diff options
author | Maximilian Hils <git@maximilianhils.com> | 2018-01-04 16:36:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-04 16:36:23 +0100 |
commit | d982dd98a04b3ec2f21e709cc2cd82fb9a7db70b (patch) | |
tree | 6483a9fd70f5a046532079f4708f74d5fe959a89 | |
parent | 00b80b33a1608624e69b33898f032b94876d317e (diff) | |
parent | 3b22433ca73b7e2810bfba519cf7deb451107c8e (diff) | |
download | mitmproxy-d982dd98a04b3ec2f21e709cc2cd82fb9a7db70b.tar.gz mitmproxy-d982dd98a04b3ec2f21e709cc2cd82fb9a7db70b.tar.bz2 mitmproxy-d982dd98a04b3ec2f21e709cc2cd82fb9a7db70b.zip |
Merge pull request #2755 from mhils/fix-unfocused-pane-click
fix #2738
-rw-r--r-- | mitmproxy/tools/console/window.py | 34 |
1 files changed, 20 insertions, 14 deletions
diff --git a/mitmproxy/tools/console/window.py b/mitmproxy/tools/console/window.py index 87680f6e..6d49e8b1 100644 --- a/mitmproxy/tools/console/window.py +++ b/mitmproxy/tools/console/window.py @@ -234,28 +234,34 @@ class Window(urwid.Frame): self.view_changed() self.focus_changed() - def current(self, keyctx): + def stacks_sorted_by_focus(self): """ - Returns the active widget, but only the current focus or overlay has - a matching key context. + Returns: + self.stacks, with the focused stack first. """ - t = self.focus_stack().top_widget() - if t.keyctx == keyctx: - return t + stacks = self.stacks.copy() + stacks.insert(0, stacks.pop(self.pane)) + return stacks - def current_window(self, keyctx): + def current(self, keyctx): """ - Returns the active window, ignoring overlays. + Returns the active widget with a matching key context, including overlays. + If multiple stacks have an active widget with a matching key context, + the currently focused stack is preferred. """ - t = self.focus_stack().top_window() - if t.keyctx == keyctx: - return t + for s in self.stacks_sorted_by_focus(): + t = s.top_widget() + if t.keyctx == keyctx: + return t - def any(self, keyctx): + def current_window(self, keyctx): """ - Returns the top window of either stack if they match the context. + Returns the active window with a matching key context, ignoring overlays. + If multiple stacks have an active widget with a matching key context, + the currently focused stack is preferred. """ - for t in [x.top_window() for x in self.stacks]: + for s in self.stacks_sorted_by_focus(): + t = s.top_window() if t.keyctx == keyctx: return t |