From 0c7a7d75275dddae58918c154cb50985c0a27e5a Mon Sep 17 00:00:00 2001 From: Adel Gadllah Date: Sun, 9 Feb 2014 16:25:37 +0100 Subject: [PATCH] Disable clutter's high dpi scaling mutter needs some work to work with high dpi scaling so disable the scaling until that is fixed. https://bugzilla.gnome.org/show_bug.cgi?id=723931 --- src/core/main.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/core/main.c b/src/core/main.c index 82ae4838a..d474ef25b 100644 --- a/src/core/main.c +++ b/src/core/main.c @@ -455,6 +455,13 @@ meta_init (void) */ meta_clutter_init (); } + + /* + * XXX: We cannot handle high dpi scaling yet, so fix the scale to 1 + * for now. + */ + clutter_settings = clutter_settings_get_default (); + g_object_set (clutter_settings, "window-scaling-factor", 1, NULL); } /**