Merge branch 'fix-composing-tab-state-case' into 'master'
Fix a bug when the value of show_composing_chat_state is not lowercase See merge request poezio/poezio!98
This commit is contained in:
commit
da235f286d
1 changed files with 1 additions and 1 deletions
|
@ -1784,7 +1784,7 @@ def _composing_tab_state(tab, state):
|
||||||
else:
|
else:
|
||||||
return # should not happen
|
return # should not happen
|
||||||
|
|
||||||
show = config.get('show_composing_tabs')
|
show = config.get('show_composing_tabs').lower()
|
||||||
show = show in values
|
show = show in values
|
||||||
|
|
||||||
if tab.state != 'composing' and state == 'composing':
|
if tab.state != 'composing' and state == 'composing':
|
||||||
|
|
Loading…
Reference in a new issue