Commit 272861bac1bac2e3d30ecb8d74618138bc5d6d9d
1 parent
696b1cc3
Exists in
master
and in
2 other branches
Adjusting header bar defaults.
Showing
2 changed files
with
3 additions
and
1 deletions
Show diff stats
schemas/linux/window.gschema.xml.in
... | ... | @@ -111,7 +111,7 @@ |
111 | 111 | </key> |
112 | 112 | |
113 | 113 | <key name="header-action-names" type="s"> |
114 | - <default>':menu.open-menu,win.disconnect,win.reconnect'</default> | |
114 | + <default>'app.new.tab:menu.open-menu,win.disconnect,win.reconnect'</default> | |
115 | 115 | <summary>The title bar action list</summary> |
116 | 116 | <description></description> |
117 | 117 | </key> | ... | ... |
src/objects/window/window.c
... | ... | @@ -297,6 +297,7 @@ |
297 | 297 | gtk_notebook_set_show_border(widget->notebook, FALSE); |
298 | 298 | gtk_notebook_set_group_name(widget->notebook,PACKAGE_NAME ":Terminals"); |
299 | 299 | |
300 | + /* | |
300 | 301 | { |
301 | 302 | // Create new tab action widget |
302 | 303 | GtkWidget * new_tab = gtk_button_new_from_icon_name("tab-new-symbolic",GTK_ICON_SIZE_LARGE_TOOLBAR); |
... | ... | @@ -312,6 +313,7 @@ |
312 | 313 | gtk_widget_show_all(new_tab); |
313 | 314 | gtk_notebook_set_action_widget(widget->notebook,new_tab,GTK_PACK_START); |
314 | 315 | } |
316 | + */ | |
315 | 317 | |
316 | 318 | // Create boxes |
317 | 319 | GtkBox * hBox = GTK_BOX(gtk_box_new(GTK_ORIENTATION_HORIZONTAL,0)); | ... | ... |