little bugfix
This commit is contained in:
parent
e8a436725a
commit
0f00e7ad8a
|
@ -196,11 +196,11 @@ class preference_Window:
|
||||||
for a in self.plugin.accounts.keys():
|
for a in self.plugin.accounts.keys():
|
||||||
for w in self.plugin.windows[a]['chats'].keys():
|
for w in self.plugin.windows[a]['chats'].keys():
|
||||||
self.plugin.windows[a]['chats'][w].tagIn.\
|
self.plugin.windows[a]['chats'][w].tagIn.\
|
||||||
set_property("foreground", colSt_in)
|
set_property("foreground", self.plugin.config['inmsgcolor'])
|
||||||
self.plugin.windows[a]['chats'][w].tagOut.\
|
self.plugin.windows[a]['chats'][w].tagOut.\
|
||||||
set_property("foreground", colSt_out)
|
set_property("foreground", self.plugin.config['outmsgcolor'])
|
||||||
self.plugin.windows[a]['chats'][w].tagStatus.\
|
self.plugin.windows[a]['chats'][w].tagStatus.\
|
||||||
set_property("foreground", colSt_status)
|
set_property("foreground", self.plugin.config['statusmsgcolor'])
|
||||||
#IconStyle
|
#IconStyle
|
||||||
ist = self.combo_iconstyle.entry.get_text()
|
ist = self.combo_iconstyle.entry.get_text()
|
||||||
self.plugin.config['iconstyle'] = ist
|
self.plugin.config['iconstyle'] = ist
|
||||||
|
|
Loading…
Reference in New Issue