confirmation is asked when we remove an account
This commit is contained in:
parent
b3473a5f1f
commit
cfd0e58803
1 changed files with 14 additions and 10 deletions
|
@ -737,6 +737,11 @@ class accounts_Window:
|
||||||
sel = self.treeview.get_selection()
|
sel = self.treeview.get_selection()
|
||||||
(model, iter) = sel.get_selected()
|
(model, iter) = sel.get_selected()
|
||||||
account = model.get_value(iter, 0)
|
account = model.get_value(iter, 0)
|
||||||
|
window = confirm_Window('Are you sure you want to remove this account (' \
|
||||||
|
+ account + ') ?')
|
||||||
|
if window.wait() == gtk.RESPONSE_OK:
|
||||||
|
if self.plugin.connected[account]:
|
||||||
|
self.plugin.send('STATUS', account, ('offline', 'offline'))
|
||||||
del self.plugin.accounts[account]
|
del self.plugin.accounts[account]
|
||||||
self.plugin.send('CONFIG', None, ('accounts', self.plugin.accounts))
|
self.plugin.send('CONFIG', None, ('accounts', self.plugin.accounts))
|
||||||
del self.plugin.windows[account]
|
del self.plugin.windows[account]
|
||||||
|
@ -1595,7 +1600,6 @@ class roster_Window:
|
||||||
txt = status
|
txt = status
|
||||||
self.plugin.send('STATUS', account, (status, txt))
|
self.plugin.send('STATUS', account, (status, txt))
|
||||||
|
|
||||||
|
|
||||||
def on_optionmenu_changed(self, widget):
|
def on_optionmenu_changed(self, widget):
|
||||||
"""When we change our status"""
|
"""When we change our status"""
|
||||||
optionmenu = self.xml.get_widget('optionmenu')
|
optionmenu = self.xml.get_widget('optionmenu')
|
||||||
|
|
Loading…
Add table
Reference in a new issue