summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@igalia.com>2017-08-27 19:32:05 -0500
committerMichael Catanzaro <mcatanzaro@igalia.com>2017-08-29 20:45:19 -0500
commit00e426cd70c86f672382b3bf2e32af40cf8af19d (patch)
tree5c4591d1118d7892a7ea6fb0251526bb78f2592b
parentd9e64ccc01dbdd83d1ca382b45ba33060823ebe3 (diff)
downloadepiphany-00e426cd70c86f672382b3bf2e32af40cf8af19d.tar.gz
window: Use dzl_application_window_set_titlebar
Necessary for getting the headerbar to show in fullscreen mode... though apparently not sufficient either, as it doesn't work.
-rw-r--r--src/ephy-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ephy-window.c b/src/ephy-window.c
index 6121fd3e6..ef794ad5f 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -2884,7 +2884,7 @@ setup_header_bar (EphyWindow *window)
EphyTitleWidget *title_widget;
header_bar = ephy_header_bar_new (window);
- gtk_window_set_titlebar (GTK_WINDOW (window), header_bar);
+ dzl_application_window_set_titlebar (DZL_APPLICATION_WINDOW (window), header_bar);
gtk_widget_show (header_bar);
app_mode = ephy_embed_shell_get_mode (ephy_embed_shell_get_default ());