Skip to content

Commit

Permalink
linter for AUTOMATIC1111#15262
Browse files Browse the repository at this point in the history
  • Loading branch information
AUTOMATIC1111 authored and ruchej committed Sep 30, 2024
1 parent ecb49cf commit 2a278f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extensions-builtin/canvas-zoom-and-pan/javascript/zoom.js
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ onUiLoaded(async() => {
if (isModifierKey(e, hotkeysConfig.canvas_hotkey_zoom)) {
e.preventDefault();

if(hotkeysConfig.canvas_hotkey_zoom === "Alt"){
if (hotkeysConfig.canvas_hotkey_zoom === "Alt") {
interactedWithAltKey = true;
}

Expand Down Expand Up @@ -805,7 +805,7 @@ onUiLoaded(async() => {
if (isModifierKey(e, hotkeysConfig.canvas_hotkey_adjust)) {
e.preventDefault();

if(hotkeysConfig.canvas_hotkey_adjust === "Alt"){
if (hotkeysConfig.canvas_hotkey_adjust === "Alt") {
interactedWithAltKey = true;
}

Expand Down

0 comments on commit 2a278f9

Please sign in to comment.