We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a563cc3 commit c079ffcCopy full SHA for c079ffc
src/com/xiang/keyDisplay/menus/AdvanceSettingsMenu.java
@@ -43,7 +43,7 @@ public AdvanceSettingsMenu() throws HeadlessException {
43
44
int buttonHeight;
45
if (lessThanMin || moreThanMax){
46
- buttonHeight = (300 / Main.keyFrames.size() + 4);
+ buttonHeight = (300 / (Main.keyFrames.size() + 4));
47
}else {
48
buttonHeight = 30;
49
}
src/com/xiang/keyDisplay/template/FileChooser.java
@@ -34,7 +34,6 @@ public static void sendDir(FileChooseCallBack fileChooseCallBack) {
34
35
36
public static void sendFile(FileChooseCallBack fileChooseCallBack) {
37
-
38
fileChooser.setTitle("打开存档...");
39
file = fileChooser.showOpenDialog(stage);
40
fileChooseCallBack.callback(file);
0 commit comments