Skip to content
Snippets Groups Projects
Commit 94eb02a6 authored by mathias.chouet's avatar mathias.chouet
Browse files

New keyboard shortcut: Alt+G to show modules diagram

parent 570d0ffa
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,7 @@ To use keyboard shortcuts, the feature must be enabled in [application parameter
- Alt + ↵: Triggers calculation of the current module
- Alt + D: Duplicates the current module
- Alt + W: Closes the current module
- Alt + G: Shows modules diagram
- Alt + 1: Positions the page on the "Input" section of the current module
- Alt + 2: Positions the page on the "Results" section of the current module
- Alt + 3: Positions the page on the "Charts" section of the current module
......@@ -9,6 +9,7 @@ Pour utiliser les raccourcis clavier, il faut activer l'option dans [les paramè
- Alt + ↵ : Lance le calcul du module en cours
- Alt + D : Duplique le module en cours
- Alt + W : Ferme le module en cours
- Alt + G : Montre le diagramme des modules
- Alt + 1 : Positionne la page sur la section "Données" du module en cours
- Alt + 2 : Positionne la page sur la section "Résultats" du module en cours
- Alt + 3 : Positionne la page sur la section "Graphique" du module en cours
......@@ -136,6 +136,7 @@ export class AppComponent implements OnInit, OnDestroy, Observer {
this.hotkeysService.add(new Hotkey("alt+o", AppComponent.onHotkey(this.loadSession, this)));
this.hotkeysService.add(new Hotkey("alt+q", AppComponent.onHotkey(this.emptySession, this)));
this.hotkeysService.add(new Hotkey("alt+n", AppComponent.onHotkey(this.toList, this)));
this.hotkeysService.add(new Hotkey("alt+g", AppComponent.onHotkey(this.toDiagram, this)));
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment