Don't show redundant menubar. Bug 756222.

Disabling the app menu in GNOME Tweak tool showed a redundant toolbar.
This is now fixed.

https://bugzilla.gnome.org/show_bug.cgi?id=756222
This commit is contained in:
Niels De Graef 2017-06-30 11:47:34 +02:00
parent 0039e10307
commit 44f21d6ff1

View file

@ -97,7 +97,11 @@ public class Contacts.Window : Gtk.ApplicationWindow {
}
public Window (Gtk.Application app, Store contacts_store) {
Object (application: app, store: contacts_store);
Object (
application: app,
show_menubar: false,
store: contacts_store
);
debug ("everyone creation: finalized already!!!");
contact_pane.store = contacts_store;