upgpkg: wordpress 6.2.1-1
[ArchLinux/community.git] / solfege / trunk / hidden_menubar.patch
blobe45e1baa4825dae7e1e657c80949635bdc34cb09
1 Author: Reiner Herrmann <reiner@reiner-h.de>
2 Description: with recent gtk+ versions, the menubar text is not visibile
3 As a workaround another container (HBox) is used.
4 Bug: https://savannah.gnu.org/bugs/index.php?53109
6 --- a/solfege/mainwin.py
7 +++ b/solfege/mainwin.py
8 @@ -267,7 +267,7 @@
9 self.g_ui_manager.add_ui_from_file("ui.xml")
11 self.add_accel_group(self.g_ui_manager.get_accel_group())
12 - hdlbox = Gtk.HandleBox()
13 + hdlbox = Gtk.HBox()
14 hdlbox.show()
15 hdlbox.add(self.g_ui_manager.get_widget('/Menubar'))
16 self._vbox.pack_start(hdlbox, False, False, 0)