prefs: add get_/set_ignore_request_hide_titlebar ()
Enables the possibility to ignore GTK_HIDE_TITLEBAR_WHEN_MAXIMIZED to prevent hiding the titlebar of applications even if they requested so. https://bugzilla.gnome.org/show_bug.cgi?id=678947
This commit is contained in:
@@ -96,6 +96,7 @@ static int draggable_border_width = 10;
|
||||
static gboolean resize_with_right_button = FALSE;
|
||||
static gboolean edge_tiling = FALSE;
|
||||
static gboolean force_fullscreen = TRUE;
|
||||
static gboolean ignore_request_hide_titlebar = FALSE;
|
||||
|
||||
static GDesktopVisualBellType visual_bell_type = G_DESKTOP_VISUAL_BELL_FULLSCREEN_FLASH;
|
||||
static MetaButtonLayout button_layout;
|
||||
@@ -2149,3 +2150,15 @@ meta_prefs_set_force_fullscreen (gboolean whether)
|
||||
{
|
||||
force_fullscreen = whether;
|
||||
}
|
||||
|
||||
gboolean
|
||||
meta_prefs_get_ignore_request_hide_titlebar (void)
|
||||
{
|
||||
return ignore_request_hide_titlebar;
|
||||
}
|
||||
|
||||
void
|
||||
meta_prefs_set_ignore_request_hide_titlebar (gboolean whether)
|
||||
{
|
||||
ignore_request_hide_titlebar = whether;
|
||||
}
|
||||
|
Reference in New Issue
Block a user