mirror of
https://gitlab.com/kauron/jstudy
synced 2024-12-22 16:33:33 +01:00
Corrected label and accelerator
This commit is contained in:
parent
777ef64bc3
commit
bc0f7b39dc
1 changed files with 5 additions and 9 deletions
|
@ -19,10 +19,10 @@
|
||||||
<content>
|
<content>
|
||||||
<VBox alignment="CENTER" spacing="15.0">
|
<VBox alignment="CENTER" spacing="15.0">
|
||||||
<children>
|
<children>
|
||||||
<Button mnemonicParsing="false" onAction="#onNewAction" prefWidth="100.0" text="New table" />
|
<Button onAction="#onNewAction" prefWidth="100.0" text="_New table" />
|
||||||
<Button mnemonicParsing="false" onAction="#onLoadAction" prefWidth="100.0" text="Load file" />
|
<Button onAction="#onLoadAction" prefWidth="100.0" text="_Load file" />
|
||||||
<Button layoutX="260.0" layoutY="187.0" mnemonicParsing="false" onAction="#onImportAction" prefWidth="100.0" text="Import data" />
|
<Button layoutX="260.0" layoutY="187.0" onAction="#onImportAction" prefWidth="100.0" text="_Import data" />
|
||||||
<Button layoutX="260.0" layoutY="208.0" mnemonicParsing="false" onAction="#onSettingsAction" prefWidth="100.0" text="Settings" />
|
<Button layoutX="260.0" layoutY="208.0" onAction="#onSettingsAction" prefWidth="100.0" text="_Settings" />
|
||||||
</children>
|
</children>
|
||||||
</VBox>
|
</VBox>
|
||||||
</content>
|
</content>
|
||||||
|
@ -52,11 +52,7 @@
|
||||||
</accelerator>
|
</accelerator>
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
<SeparatorMenuItem mnemonicParsing="false" />
|
<SeparatorMenuItem mnemonicParsing="false" />
|
||||||
<MenuItem onAction="#onImportAction" text="_Open">
|
<MenuItem onAction="#onImportAction" text="_Import" />
|
||||||
<accelerator>
|
|
||||||
<KeyCodeCombination alt="UP" code="O" control="DOWN" meta="UP" shift="UP" shortcut="UP" />
|
|
||||||
</accelerator>
|
|
||||||
</MenuItem>
|
|
||||||
</items>
|
</items>
|
||||||
</Menu>
|
</Menu>
|
||||||
</menus>
|
</menus>
|
||||||
|
|
Loading…
Reference in a new issue