mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-13 04:10:13 +00:00
x11: don't apply scaling factor twice
The fallback behaviour of get_work_area () divides the screen width and height by the window scaling factor, but those values are already scaled down. https://bugzilla.gnome.org/show_bug.cgi?id=761474
This commit is contained in:
parent
4a49d8d14f
commit
7b88e304c7
@ -328,8 +328,8 @@ get_work_area (GdkScreen *screen,
|
||||
/* Defaults in case of error */
|
||||
area->x = 0;
|
||||
area->y = 0;
|
||||
area->width = gdk_screen_get_width (screen) / x11_screen->window_scale;
|
||||
area->height = gdk_screen_get_height (screen) / x11_screen->window_scale;
|
||||
area->width = gdk_screen_get_width (screen);
|
||||
area->height = gdk_screen_get_height (screen);
|
||||
|
||||
if (!gdk_x11_screen_supports_net_wm_hint (screen,
|
||||
gdk_atom_intern_static_string ("_NET_WORKAREA")))
|
||||
|
Loading…
Reference in New Issue
Block a user