From dc4db6f88c49b2236510f8ac45218a68a281f8ff Mon Sep 17 00:00:00 2001 From: Michael Hudson-Doyle Date: Wed, 6 May 2020 06:39:24 +1200 Subject: [PATCH] fix crash on using f1 to open help menu --- subiquity/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subiquity/core.py b/subiquity/core.py index eaf51126..9bc8ad9f 100644 --- a/subiquity/core.py +++ b/subiquity/core.py @@ -408,7 +408,7 @@ class Subiquity(Application): def unhandled_input(self, key): if key == 'f1': - if not self.ui.right_icon.showing_something: + if not self.ui.right_icon.current_help: self.ui.right_icon.open_pop_up() elif key in ['ctrl z', 'f2']: self.debug_shell()