mirror of
https://github.com/sirjonasxx/G-Earth.git
synced 2025-01-31 12:52:36 +01:00
bugfixes
This commit is contained in:
parent
eb7c9f1829
commit
d612eb8c54
@ -262,20 +262,24 @@ public class UiLoggerController implements Initializable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void onDisconnect() {
|
public void onDisconnect() {
|
||||||
if (chkHideOnDisconnect.isSelected()) {
|
Platform.runLater(() -> {
|
||||||
stage.hide();
|
if (chkHideOnDisconnect.isSelected()) {
|
||||||
}
|
stage.hide();
|
||||||
if (chkResetOnDisconnect.isSelected()) {
|
}
|
||||||
clearText(null);
|
if (chkResetOnDisconnect.isSelected()) {
|
||||||
}
|
clearText(null);
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public void onConnect() {
|
public void onConnect() {
|
||||||
if (chkResetOnConnect.isSelected()) {
|
Platform.runLater(() -> {
|
||||||
clearText(null);
|
if (chkResetOnConnect.isSelected()) {
|
||||||
}
|
clearText(null);
|
||||||
if (chkOpenOnConnect.isSelected()) {
|
}
|
||||||
stage.show();
|
if (chkOpenOnConnect.isSelected()) {
|
||||||
}
|
stage.show();
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -38,10 +38,7 @@
|
|||||||
<accelerator>
|
<accelerator>
|
||||||
<KeyCodeCombination alt="UP" code="L" control="DOWN" meta="UP" shift="UP" shortcut="UP" />
|
<KeyCodeCombination alt="UP" code="L" control="DOWN" meta="UP" shift="UP" shortcut="UP" />
|
||||||
</accelerator></CheckMenuItem>
|
</accelerator></CheckMenuItem>
|
||||||
<CheckMenuItem fx:id="chkClearText" mnemonicParsing="false" onAction="#clearText" text="Clear text">
|
<MenuItem mnemonicParsing="false" onAction="#clearText" text="Clear text" />
|
||||||
<accelerator>
|
|
||||||
<KeyCodeCombination alt="UP" code="E" control="DOWN" meta="UP" shift="UP" shortcut="UP" />
|
|
||||||
</accelerator></CheckMenuItem>
|
|
||||||
</Menu>
|
</Menu>
|
||||||
<Menu mnemonicParsing="false" text="Packets">
|
<Menu mnemonicParsing="false" text="Packets">
|
||||||
<items>
|
<items>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user