GNOME Bugzilla – Bug 772892
lost icons in GtkImage
Last modified: 2018-03-26 15:56:33 UTC
I have the following structure: <object class="GtkStatusbar" id="status_bar"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="spacing">2</property> <signal name="text-pushed" handler="on_status_bar_text_pushed" swapped="no"/> <child> <object class="GtkImage" id="login_status1"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="tooltip_text" translatable="yes">login status 1: You are not logged in</property> <property name="pixbuf">icons/name.png</property> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">1</property> </packing> </child> <child> <object class="GtkImage" id="login_status2"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="tooltip_text" translatable="yes">login status 2: You are not logged in</property> <property name="pixbuf">icons/namesv2.png</property> </object> <packing> <property name="expand">False</property> <property name="fill">True</property> <property name="position">2</property> </packing> </child> </object> Everytime I open this file with glade and save, all pixbuf properties is replaced by <property name="pixbuf">name.png</property>, resulting in a incorrect path for the first GtkImage, and a incorrect image and path for the second GtkImage.
-- GitLab Migration Automatic Message -- This bug has been migrated to GNOME's GitLab instance and has been closed from further activity. You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.gnome.org/GNOME/glade/issues/249.