Also clear the current visual select when selecting in stack layout
This commit is contained in:
parent
6997e36670
commit
a788cd9f64
@ -905,14 +905,15 @@ class Boss:
|
|||||||
if get_options().enable_audio_bell:
|
if get_options().enable_audio_bell:
|
||||||
ring_bell()
|
ring_bell()
|
||||||
return
|
return
|
||||||
|
cvs = self.current_visual_select
|
||||||
|
|
||||||
def chosen(ans: Union[None, int, str]) -> None:
|
def chosen(ans: Union[None, int, str]) -> None:
|
||||||
if isinstance(ans, int):
|
if cvs and self.current_visual_select is cvs and isinstance(ans, int):
|
||||||
for tab in self.all_tabs:
|
for tab in self.all_tabs:
|
||||||
if tab.id == tab_id and self.current_visual_select:
|
if tab.id == tab_id:
|
||||||
w = self.window_id_map.get(ans)
|
w = self.window_id_map.get(ans)
|
||||||
if w is not None:
|
if w is not None:
|
||||||
self.current_visual_select.callback(tab, w)
|
cvs.callback(tab, w)
|
||||||
break
|
break
|
||||||
self.current_visual_select = None
|
self.current_visual_select = None
|
||||||
self.choose_entry(msg, windows, chosen)
|
self.choose_entry(msg, windows, chosen)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user