diff options
| author | Ibrahim Serdar Acikgoz <serdaracikgoz86@gmail.com> | 2018-12-13 02:12:03 +0300 |
|---|---|---|
| committer | Ibrahim Serdar Acikgoz <serdaracikgoz86@gmail.com> | 2018-12-13 02:12:03 +0300 |
| commit | a4a29171fb11c98432ead8e72bc0948a549d9979 (patch) | |
| tree | 1525cc43a0a86e79a174b4b214cc2ad64e58aaaa /pkg/gui/keybindings.go | |
| parent | implementing authentication for fetch operation (diff) | |
| download | gitbatch-a4a29171fb11c98432ead8e72bc0948a549d9979.tar.gz | |
login implementation stablized, some renaming, some refactoring and updated readme
Diffstat (limited to 'pkg/gui/keybindings.go')
| -rw-r--r-- | pkg/gui/keybindings.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/gui/keybindings.go b/pkg/gui/keybindings.go index 9b23fa2..1d4dd6d 100644 --- a/pkg/gui/keybindings.go +++ b/pkg/gui/keybindings.go @@ -191,7 +191,7 @@ func (gui *Gui) generateKeybindings() error { Handler: gui.nextAuthView, Display: "tab", Description: "Next Panel", - Vital: false, + Vital: true, }, { View: view.Name, Key: gocui.KeyEnter, @@ -199,7 +199,7 @@ func (gui *Gui) generateKeybindings() error { Handler: gui.submitAuthenticationView, Display: "enter", Description: "Submit", - Vital: false, + Vital: true, }, } for _, binding := range authKeybindings { |
