Comment 3 for bug 214267

Revision history for this message
James White (frozenjim) wrote :

Hi, another newb with the same problem.

I commented out all of the menuitem in my .glade file and it built and compiled fine. Then I moved my comment lines until I isolated the problem.

Glade is adding a property called "use_stock" to the GtkImageMenuItem that doesn't seem to belong. By commenting out that property line, everything works fine (at least so far as I have coded - my menus don't actually DO anything yet).

[code]
<child>
   <widget class="GtkImageMenuItem" id="new_menu_item">
      <property name="visible">True</property>
      <property name="label" translatable="yes">gtk-new</property>
      <property name="use_underline">True</property>
<!--<property name="use_stock">True</property> -->
   </widget>
</child>[/code]