summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorРуслан Ижбулатов <lrn1986@gmail.com>2015-03-26 15:22:07 +0000
committerРуслан Ижбулатов <lrn1986@gmail.com>2015-03-26 15:57:25 +0000
commit6125baa67037a178fa2233061a16ca2a5ccd5cf1 (patch)
tree53935315b07db991b1bc4c2da2e1482bdd7b9113
parent175c62e3627479d25da64735876d7734645599bb (diff)
downloadgtk+-6125baa67037a178fa2233061a16ca2a5ccd5cf1.tar.gz
W32: Correctly set maximized window position
Use screen workarea to *also* set the position of a maximized window, not just its size. Without this the window position defaults to 0:0 (the topleft corner), which is wrong when taskbar is position along the top or left edge of the screen. https://bugzilla.gnome.org/show_bug.cgi?id=746821
-rw-r--r--gdk/win32/gdkevents-win32.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdk/win32/gdkevents-win32.c b/gdk/win32/gdkevents-win32.c
index 4b32f1c735..d9e4de5120 100644
--- a/gdk/win32/gdkevents-win32.c
+++ b/gdk/win32/gdkevents-win32.c
@@ -3087,6 +3087,8 @@ gdk_event_translate (MSG *msg,
{
mmi->ptMaxTrackSize.x = moninfo.rcWork.right - moninfo.rcWork.left;
mmi->ptMaxTrackSize.y = moninfo.rcWork.bottom - moninfo.rcWork.top;
+ mmi->ptMaxPosition.x = moninfo.rcWork.left;
+ mmi->ptMaxPosition.y = moninfo.rcWork.top;
}
else
{