modified some keyboard short cuts

This commit is contained in:
hneemann 2019-07-20 08:22:44 +02:00
parent 919e6c1d5d
commit ab76a482f5
3 changed files with 8 additions and 2 deletions

View File

@ -957,7 +957,7 @@ public final class Main extends JFrame implements ClosingWindowListener.ConfirmS
showErrorAndStopModel(Lang.get("msg_errorCalculatingStep"), e1);
}
}
}.setToolTip(Lang.get("menu_step_tt")).setAccelerator("M").setEnabledChain(false);
}.setToolTip(Lang.get("menu_step_tt")).setAccelerator("V").setEnabledChain(false);
runToBreakMicroAction = new ToolTipAction(Lang.get("menu_runToBreakMicro"), ICON_STEP_FINISH) {
@Override
public void actionPerformed(ActionEvent e) {
@ -971,7 +971,7 @@ public final class Main extends JFrame implements ClosingWindowListener.ConfirmS
showErrorAndStopModel(Lang.get("msg_errorCalculatingStep"), e1);
}
}
}.setToolTip(Lang.get("menu_runToBreakMicro_tt")).setAcceleratorCTRLplus('M').setEnabledChain(false);
}.setToolTip(Lang.get("menu_runToBreakMicro_tt")).setAccelerator("B").setEnabledChain(false);
ToolTipAction runModelAction = runModelState.createToolTipAction(Lang.get("menu_run"), ICON_RUN)
.setToolTip(Lang.get("menu_run_tt"));

View File

@ -646,6 +646,9 @@
<shortcut key="C">Einen Taktschritt ausführen (nur bei gestarteter Simulation und nur, wenn es genau ein
Taktelement in der Schaltung gibt)
</shortcut>
<shortcut key="V">Einen Gatterschritt ausführen.</shortcut>
<shortcut key="B">Alle Gatterschritte ausführen, bis sich die Schaltung stabilisiert hat, oder, wenn
ein Break-Element vorhanden ist, bis zum Break.</shortcut>
<shortcut key="F9">Analyse der Schaltung</shortcut>
<shortcut key="STRG-A">Alles auswählen</shortcut>
<shortcut key="STRG-X">Ausschneiden der selektierten Elemente und kopieren in die Zwischenablage</shortcut>

View File

@ -584,6 +584,9 @@
<shortcut key="C">A single clock step (Works only in a running simulation and only if there is a single
clock component).
</shortcut>
<shortcut key="V">Execute a single gate step.</shortcut>
<shortcut key="B">Execute all single gate steps until the circuit has stabilized or,
if a break component is present, until the break.</shortcut>
<shortcut key="F9">Analysis of the circuit</shortcut>
<shortcut key="CTRL-A">Select all.</shortcut>
<shortcut key="CTRL-X">Cuts the selected components to the clipboard.</shortcut>