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:
parent
0039e10307
commit
44f21d6ff1
1 changed files with 5 additions and 1 deletions
|
@ -97,7 +97,11 @@ public class Contacts.Window : Gtk.ApplicationWindow {
|
||||||
}
|
}
|
||||||
|
|
||||||
public Window (Gtk.Application app, Store contacts_store) {
|
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!!!");
|
debug ("everyone creation: finalized already!!!");
|
||||||
|
|
||||||
contact_pane.store = contacts_store;
|
contact_pane.store = contacts_store;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue