show out logo in about_window
This commit is contained in:
parent
ddb6e8c5fd
commit
8868c6d625
2 changed files with 4 additions and 2 deletions
|
@ -467,6 +467,9 @@ class about_window: #FIXME: (nk) pygtk2.6 has a built-in window for that
|
|||
def __init__(self, plugin):
|
||||
xml = gtk.glade.XML(GTKGUI_GLADE, 'about_window', APP)
|
||||
self.window = xml.get_widget('about_window')
|
||||
logo_image = xml.get_widget('logo_image')
|
||||
logo_image.set_from_file('plugins/gtkgui/pixmaps/logo.png')
|
||||
|
||||
self.plugin = plugin
|
||||
xml.signal_connect('gtk_widget_destroy', self.delete_event)
|
||||
xml.signal_connect('on_close_clicked', self.on_close)
|
||||
|
|
|
@ -897,9 +897,8 @@
|
|||
<property name="spacing">0</property>
|
||||
|
||||
<child>
|
||||
<widget class="GtkImage" id="image5">
|
||||
<widget class="GtkImage" id="logo_image">
|
||||
<property name="visible">True</property>
|
||||
<property name="pixbuf">about.png</property>
|
||||
<property name="xalign">0.5</property>
|
||||
<property name="yalign">0.5</property>
|
||||
<property name="xpad">0</property>
|
||||
|
|
Loading…
Add table
Reference in a new issue