show the account modification window when we launch gajim and no account configured
This commit is contained in:
parent
3777c514da
commit
e6b04e8159
|
@ -2728,6 +2728,10 @@ class roster_window:
|
||||||
|
|
||||||
self.hidden_lines = self.plugin.config['hiddenlines'].split('\t')
|
self.hidden_lines = self.plugin.config['hiddenlines'].split('\t')
|
||||||
self.draw_roster()
|
self.draw_roster()
|
||||||
|
if len(self.plugin.accounts) == 0:
|
||||||
|
self.plugin.windows['accounts_window'] = Accounts_window(self.plugin)
|
||||||
|
self.plugin.windows['account_modification_window'] = \
|
||||||
|
Account_modification_window(self.plugin)
|
||||||
|
|
||||||
class systrayDummy:
|
class systrayDummy:
|
||||||
"""Class when we don't want icon in the systray"""
|
"""Class when we don't want icon in the systray"""
|
||||||
|
|
Loading…
Reference in New Issue