commit 3319bcf033351b02bcbe155dde0bdb0f824a7a99 Author: Matthias Clasen Date: Mon Feb 6 09:44:09 2012 -0500 Fix doc build docs/reference/gdk/tmpl/x_interaction.sgml | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) commit 2624136a992df11ef63ca14893fa68803a8b31fa Author: Matthias Clasen Date: Mon Feb 6 09:12:35 2012 -0500 Updates NEWS | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) commit 66c99016d3d063aee0e00793da8f087c80172012 Author: Marek Kasik Date: Tue Jan 31 12:01:43 2012 +0100 printing: Don't crash when printing This commit fixes crash which occurs in Firefox, Thunderbird and Inkscape during printing. This crash was caused because of wrong handling of Custom CUPS options. (#543520) modules/printbackends/cups/gtkprintbackendcups.c | 62 ++++++++++++++-------- 1 files changed, 40 insertions(+), 22 deletions(-) commit 5f48cfe4918d54d91ec2a87877be6a19b6d43b45 Author: Michael Natterer Date: Thu Jan 26 10:11:17 2012 +0100 Bug 667691 - implement gdk_window_restack() for Quartz Apply patch from Paul Davis which implements this missing function. gdk/quartz/gdkwindow-quartz.c | 13 ++++++++++++- 1 files changed, 12 insertions(+), 1 deletions(-) commit fc3cff11b5145241912377bde1a66d4d6a14d006 Author: LRN Date: Sun Dec 11 18:22:43 2011 +0100 win32: Draw arrows as polygons, not as rows of pixels https://bugzilla.gnome.org/show_bug.cgi?id=665955 modules/engines/ms-windows/msw_style.c | 34 ++++++++++++++++++++----------- 1 files changed, 22 insertions(+), 12 deletions(-) commit fb87d9c90153dcfd2e126c5bca9ad2d4ffbdfdff Author: Dieter Verfaillie Date: Tue Dec 20 23:02:46 2011 +0100 win32: fix gdk_win32_window_raise When calling gtk_window_present(), gdk_win32_window_raise did not actually raise the window anymore. Replacing BringWindowToTop() with SetForegroundWindow() fixes this. During testing, we also discovered that sometimes SetForeGroundWindow() will (correctly) refuse to raise the window and fail(for example: sometimes when dragging a different application at the time of a gtk_window_present() call). To prevent a GdkWarning from being produced, usage of the API_CALL macro has been removed for this case. Additional goodies of SetForeGroundWindow: - it brings the window to the front when the process owning the window to raise is the foreground process (for example when gtk_window_present is called from a GtkStatusIcon's activate signal handler) - it limits itself to flashing the task bar button associated with the window if the process owning the window to raise is *not* the foreground process (for example when gtk_window_present is called from a g_timeout_add callback function) https://bugzilla.gnome.org/show_bug.cgi?id=665760 gdk/win32/gdkwindow-win32.c | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) commit a3cbaa5956fda48f8df11d05851d9603c22e2398