diff options
author | Victor Kareh <[email protected]> | 2019-05-21 14:35:03 -0400 |
---|---|---|
committer | Victor Kareh <[email protected]> | 2019-06-05 10:49:37 -0400 |
commit | 17213f256a0c63c7f100e9b09fadbda4ee46a3ec (patch) | |
tree | 43228eb44892922b3111661e6bf8269fdc7f3278 /src/core/prefs.c | |
parent | 7d88bf4c26215d8090e5fa48b12a7063b9de4656 (diff) | |
download | marco-17213f256a0c63c7f100e9b09fadbda4ee46a3ec.tar.bz2 marco-17213f256a0c63c7f100e9b09fadbda4ee46a3ec.tar.xz |
Allow raise_on_click to be set independent of focus_mode
Based on a patch by Thomas Jaeger <[email protected]>
upstream commit:
https://gitlab.gnome.org/GNOME/metacity/commit/03e8e63d
Diffstat (limited to 'src/core/prefs.c')
-rw-r--r-- | src/core/prefs.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/core/prefs.c b/src/core/prefs.c index 5565f744..2c93cf19 100644 --- a/src/core/prefs.c +++ b/src/core/prefs.c @@ -1092,10 +1092,7 @@ meta_prefs_get_attach_modal_dialogs (void) gboolean meta_prefs_get_raise_on_click (void) { - /* Force raise_on_click on for click-to-focus, as requested by Havoc - * in #326156. - */ - return raise_on_click || focus_mode == META_FOCUS_MODE_CLICK; + return raise_on_click; } const char* |