Wayland: Set gtk-dialogs-use-header

Since we don't have a setting for this, hardcode the value
for now.
This commit is contained in:
Matthias Clasen
2014-02-06 22:51:05 -05:00
parent 5c40be6064
commit 8e797c1195

View File

@ -718,6 +718,12 @@ gdk_wayland_screen_get_setting (GdkScreen *screen,
if (strcmp (name, "gtk-shell-shows-desktop") == 0)
return set_capability_setting (screen, value, GTK_SHELL_CAPABILITY_DESKTOP_ICONS);
if (strcmp (name, "gtk-dialogs-use-header") == 0)
{
g_value_set_boolean (value, TRUE);
return TRUE;
}
return FALSE;
}