glade fixing
This commit is contained in:
parent
316ca92083
commit
2fd11adc18
|
@ -422,7 +422,7 @@ class Preferences_window:
|
||||||
|
|
||||||
def on_preferences_window_show(self, widget):
|
def on_preferences_window_show(self, widget):
|
||||||
self.notebook.set_current_page(0)
|
self.notebook.set_current_page(0)
|
||||||
|
'''
|
||||||
theme_combobox = self.xml.get_widget('theme_combobox')
|
theme_combobox = self.xml.get_widget('theme_combobox')
|
||||||
model = theme_combobox.get_model()
|
model = theme_combobox.get_model()
|
||||||
active = theme_combobox.get_active()
|
active = theme_combobox.get_active()
|
||||||
|
@ -432,6 +432,7 @@ class Preferences_window:
|
||||||
fonts_colors_table.show()
|
fonts_colors_table.show()
|
||||||
else:
|
else:
|
||||||
fonts_colors_table.hide()
|
fonts_colors_table.hide()
|
||||||
|
'''
|
||||||
|
|
||||||
def on_preferences_window_key_press_event(self, widget, event):
|
def on_preferences_window_key_press_event(self, widget, event):
|
||||||
if event.keyval == gtk.keysyms.Escape:
|
if event.keyval == gtk.keysyms.Escape:
|
||||||
|
@ -557,6 +558,7 @@ class Preferences_window:
|
||||||
model = widget.get_model()
|
model = widget.get_model()
|
||||||
active = widget.get_active()
|
active = widget.get_active()
|
||||||
theme = model[active][0]
|
theme = model[active][0]
|
||||||
|
'''
|
||||||
fonts_colors_table = self.xml.get_widget('fonts_colors_table')
|
fonts_colors_table = self.xml.get_widget('fonts_colors_table')
|
||||||
if theme == 'custom':
|
if theme == 'custom':
|
||||||
fonts_colors_table.show()
|
fonts_colors_table.show()
|
||||||
|
@ -578,6 +580,7 @@ class Preferences_window:
|
||||||
else:
|
else:
|
||||||
widg.set_font_name(self.theme_default[theme][font_widgets[w]])
|
widg.set_font_name(self.theme_default[theme][font_widgets[w]])
|
||||||
self.on_widget_font_set(widg, font_widgets[w])
|
self.on_widget_font_set(widg, font_widgets[w])
|
||||||
|
'''
|
||||||
|
|
||||||
gajim.config.set('roster_theme', theme)
|
gajim.config.set('roster_theme', theme)
|
||||||
# begin repainting themed widgets throughout
|
# begin repainting themed widgets throughout
|
||||||
|
|
996
src/gtkgui.glade
996
src/gtkgui.glade
File diff suppressed because it is too large
Load Diff
|
@ -305,7 +305,11 @@ class Roster_window:
|
||||||
for account in gajim.connections:
|
for account in gajim.connections:
|
||||||
our_jid = gajim.config.get_per('accounts', account, 'name') + '@' +\
|
our_jid = gajim.config.get_per('accounts', account, 'name') + '@' +\
|
||||||
gajim.config.get_per('accounts', account, 'hostname')
|
gajim.config.get_per('accounts', account, 'hostname')
|
||||||
item = gtk.MenuItem(_('as ') + our_jid)
|
lbl = gtk.Label()
|
||||||
|
lbl.set_markup('<b>abc</b>')
|
||||||
|
item = gtk.MenuItem()
|
||||||
|
item.add(lbl)
|
||||||
|
#item = gtk.MenuItem(_('as ') + our_jid)
|
||||||
sub_menu.append(item)
|
sub_menu.append(item)
|
||||||
item.connect('activate', self.on_join_gc_activate, account)
|
item.connect('activate', self.on_join_gc_activate, account)
|
||||||
sub_menu.show_all()
|
sub_menu.show_all()
|
||||||
|
|
Loading…
Reference in New Issue