Skip to content

Commit

Permalink
chickenpaint/js/chickenpaint.js
Browse files Browse the repository at this point in the history
  • Loading branch information
satopian committed Nov 28, 2023
1 parent 8ebde30 commit 31e2c12
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 52 deletions.
4 changes: 2 additions & 2 deletions potiboard5/chickenpaint/js/chickenpaint.js
Original file line number Diff line number Diff line change
Expand Up @@ -19687,7 +19687,7 @@ function CPCanvas(controller) {
CPMoveToolMode.prototype = Object.create(CPMode.prototype);
CPMoveToolMode.prototype.constructor = CPMoveToolMode;
CPMoveToolMode.prototype.mouseMove = function (e) {
if (!_keymaster.default.isPressed("space") && !e.altKey) {
if (!_keymaster.default.isPressed("r")) {
setCursor(CURSOR_MOVE);
return true;
}
Expand Down Expand Up @@ -31099,7 +31099,7 @@ function getKeyCodeFromKey(key) {
var EVENT_KEY$5 = "." + DATA_KEY$5;
var DATA_API_KEY$2 = '.data-api';
var JQUERY_NO_CONFLICT$5 = $__default["default"].fn[NAME$5];
var ESCAPE_KEYCODE = 27; // Keyboardevent.key value for Escape (Esc) key
var ESCAPE_KEYCODE = 'Escape'; // KeyboardEvent.which value for Escape (Esc) key

var CLASS_NAME_SCROLLABLE = 'modal-dialog-scrollable';
var CLASS_NAME_SCROLLBAR_MEASURER = 'modal-scrollbar-measure';
Expand Down
4 changes: 2 additions & 2 deletions potiboard5/chickenpaint/js/chickenpaint.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit 31e2c12

Please sign in to comment.