提交 dc004f37 编写于 作者: S Skylot

style: fix code formatting

上级 cfbbd99b
......@@ -203,13 +203,18 @@ public class Utils {
icons.add(Utils.openImage("/logos/jadx-logo.png"));
window.setIconImages(icons);
}
public static int ctrlButton() {
public static final int CTRL_BNT_KEY = getCtrlButton();
private static int getCtrlButton() {
if (System.getProperty("os.name").toLowerCase().contains("mac")) {
return Toolkit.getDefaultToolkit().getMenuShortcutKeyMask();
}
else {
return InputEvent.CTRL_DOWN_MASK;
}
return Toolkit.getDefaultToolkit().getMenuShortcutKeyMask();
} else {
return InputEvent.CTRL_DOWN_MASK;
}
}
public static int ctrlButton() {
return CTRL_BNT_KEY;
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册