Merge branch 'info-bar-pos' into 'master'
windows/info_bar: Prevent UnboundLocalError. Thanks genofire See merge request poezio/poezio!151
This commit is contained in:
commit
37cebbceb0
1 changed files with 4 additions and 0 deletions
|
@ -118,6 +118,10 @@ class VerticalGlobalInfoBar(Win):
|
|||
nb_tabs = len(sorted_tabs)
|
||||
use_nicks = config.get('use_tab_nicks')
|
||||
if nb_tabs >= height:
|
||||
# TODO: As sorted_tabs filters out gap tabs this ensures pos is
|
||||
# always set, preventing UnboundLocalError. Now is this how this
|
||||
# should be fixed.
|
||||
pos = 0
|
||||
for y, tab in enumerate(sorted_tabs):
|
||||
if tab.vertical_color == theme.COLOR_VERTICAL_TAB_CURRENT:
|
||||
pos = y
|
||||
|
|
Loading…
Reference in a new issue