From 47d8222f2ef31435ce3d64c9c74144658ed10ce9 Mon Sep 17 00:00:00 2001 From: Konloch Date: Mon, 21 Jun 2021 16:38:20 -0700 Subject: [PATCH] Enable CTRL + Mouse Wheel Zoom --- .../the/bytecode/club/bytecodeviewer/gui/PaneUpdaterThread.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/the/bytecode/club/bytecodeviewer/gui/PaneUpdaterThread.java b/src/main/java/the/bytecode/club/bytecodeviewer/gui/PaneUpdaterThread.java index c0293491..7631357d 100644 --- a/src/main/java/the/bytecode/club/bytecodeviewer/gui/PaneUpdaterThread.java +++ b/src/main/java/the/bytecode/club/bytecodeviewer/gui/PaneUpdaterThread.java @@ -62,7 +62,7 @@ public abstract class PaneUpdaterThread extends Thread { public void run() { doShit(); synchronizePane(); - //attachCtrlMouseWheelZoom(scrollPane, panelArea); //freezes the UI for some reason, probably cause BCV is + attachCtrlMouseWheelZoom(scrollPane, panelArea); //freezes the UI for some reason, probably cause BCV is // doing dumb shit with the swing thread }