[evolution/f17] Add patch for Red Hat bug #831128 (opens on wrong monitor)

Milan Crha mcrha at fedoraproject.org
Tue Jun 26 15:01:33 UTC 2012


commit 0f28833785a1722dad5335da89b77415caa3c8df
Author: Milan Crha <mcrha at redhat.com>
Date:   Tue Jun 26 17:01:23 2012 +0200

    Add patch for Red Hat bug #831128 (opens on wrong monitor)

 evolution-3.4.3-remember-monitor.patch |   33 ++++++++++++++++++++++++++++++++
 evolution.spec                         |    9 +++++++-
 2 files changed, 41 insertions(+), 1 deletions(-)
---
diff --git a/evolution-3.4.3-remember-monitor.patch b/evolution-3.4.3-remember-monitor.patch
new file mode 100644
index 0000000..ceeb935
--- /dev/null
+++ b/evolution-3.4.3-remember-monitor.patch
@@ -0,0 +1,33 @@
+diff --git a/e-util/e-util.c b/e-util/e-util.c
+index f3b71c5..a579985 100644
+--- a/e-util/e-util.c
++++ b/e-util/e-util.c
+@@ -351,6 +351,11 @@ e_restore_window (GtkWindow *window,
+ 
+ 		if (g_settings_get_boolean (settings, "maximized")) {
+ 			GdkScreen *screen;
++			GdkRectangle monitor_area;
++			gint x, y, monitor;
++
++			x = g_settings_get_int (settings, "x");
++			y = g_settings_get_int (settings, "y");
+ 
+ 			screen = gtk_window_get_screen (window);
+ 			gtk_window_get_size (window, &width, &height);
+@@ -358,10 +363,13 @@ e_restore_window (GtkWindow *window,
+ 			data->premax_width = width;
+ 			data->premax_height = height;
+ 
+-			width = gdk_screen_get_width (screen);
+-			height = gdk_screen_get_height (screen);
++			monitor = gdk_screen_get_monitor_at_point (screen, x, y);
++			if (monitor < 0 || monitor >= gdk_screen_get_n_monitors (screen))
++				monitor = 0;
+ 
+-			gtk_window_resize (window, width, height);
++			gdk_screen_get_monitor_workarea (screen, monitor, &monitor_area);
++
++			gtk_window_resize (window, monitor_area.width, monitor_area.height);
+ 			gtk_window_maximize (window);
+ 		}
+ 	}
diff --git a/evolution.spec b/evolution.spec
index 960e822..4c74efd 100644
--- a/evolution.spec
+++ b/evolution.spec
@@ -27,7 +27,7 @@
 
 Name: evolution
 Version: 3.4.3
-Release: 1%{?dist}
+Release: 2%{?dist}
 Group: Applications/Productivity
 Summary: Mail and calendar client for GNOME
 License: GPLv2+ and GFDL
@@ -46,6 +46,9 @@ Patch01: evolution-1.4.4-ldap-x86_64-hack.patch
 # RH bug #589555
 Patch02: evolution-2.30.1-help-contents.patch
 
+# RH bug #831128
+Patch03: evolution-3.4.3-remember-monitor.patch
+
 ## Dependencies ###
 
 Requires(pre): GConf2
@@ -202,6 +205,7 @@ This package contains the plugin to import Microsoft Personal Storage Table
 %setup -q -n evolution-%{version}
 %patch01 -p1 -b .ldaphack
 %patch02 -p1 -b .help-contents
+%patch03 -p1 -b .remember-monitor
 
 mkdir -p krb5-fakeprefix/include
 mkdir -p krb5-fakeprefix/lib
@@ -572,6 +576,9 @@ rm -rf $RPM_BUILD_ROOT
 %endif
 
 %changelog
+* Tue Jun 26 2012 Milan Crha <mcrha at redhat.com> - 3.4.3-2
+- Add patch for Red Hat bug #831128 (opens on wrong monitor)
+
 * Mon Jun 18 2012 Milan Crha <mcrha at redhat.com> - 3.4.3-1
 - Update to 3.4.3
 - Bump gtkhtml3 dependency to 4.4.3


More information about the scm-commits mailing list