'uihelpers.py' "toolbar shutdown button menu" is disabled in the Rawhide edition of the 'Virtual Machine Manager'. $ rpm -qf $(which virt-manager) virt-manager-1.0.0-2.fc21.noarch http://goo.gl/ddQgq2 In Humpty Dumpty aka F20 this menu is turned on and operational.
Strange. Can you update f20 to virt-manager-1.0.0-2 from updates testing and confirm if the problem is present or not? And please you post virt-manager --debug output when reproducing the issue
Fedora 20: - Virtual Machine Manager 1.0.0-2 - GTK version: 3.10.6 Rawhide: - Virtual Machine Manager 1.0.0-2 - GTK version: 3.11.7 All the same. Perhaps an issue with a GTK?
Created attachment 867438 [details] ViMaMa debug log - Rawhide
Created attachment 867439 [details] ViMaMa debug log - Fedora 20 - OK
BTW this "Unity" thingy still appears, "ERROR (importer:51) Could not find any typelib for AppIndicator3" Does anyone actually still uses 'lib*indicator*'? We've already talked about that, http://thread.gmane.org/gmane.comp.emulators.virt-tools/6311
Seems to be a gtk issue, this code works fine on f20 but the menu isn't accessible on rawhide $ cat test.py from gi.repository import Gtk import sys def delete_cb(*args, **kwargs): Gtk.main_quit() sys.exit(1) win = Gtk.Window() win.connect("delete-event", delete_cb) m = Gtk.Menu() i2 = Gtk.MenuItem.new_with_label("bar") i3 = Gtk.MenuItem.new_with_label("baz") m.add(i2) m.add(i3) m.show_all() i1 = Gtk.MenuToolButton() i1.set_label("foo") i1.set_is_important(True) i1.set_menu(m) toolbar = Gtk.Toolbar() toolbar.add(i1) win.add(toolbar) win.show_all() Gtk.main()
> TEST 1 gtk3-3.11.7 patched with - menu button: avoid property order dependencies - menu button: Fix property notification - GtkModelButton: fix up naming - Fix GtkMenuToolButton https://git.gnome.org/browse/gtk+/log/gtk/gtkmenubutton.c > PASSED > TEST 2 # rpm -q gtk3 gtk3-3.11.8-1.fc21.x86_64 i.e. https://git.gnome.org/browse/gtk+/snapshot/gtk+-abe9ce45f382c2f10171973a6f2452bfec77fbc3.tar.gz > PASSED
Created attachment 868118 [details] Virtual Machine Manager debug - Rawhide - GTK v3.11.8