summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog6
-rw-r--r--debian/patches/01_focus_windows.patch105
2 files changed, 109 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog
index c5e6e3bb..b2a4fbcd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,11 @@
-zenity (2.26.0-2) UNRELEASED; urgency=low
+zenity (2.26.0-2) unstable; urgency=low
* Only conflict with libgtkada-bin << 2.12.0-4, add replaces.
Closes: #533867.
+ * 01_focus_windows.patch: stolen upstream. Focus zenity windows by
+ default. Closes: #528455.
- -- Josselin Mouette <joss@debian.org> Sun, 21 Jun 2009 10:41:27 +0200
+ -- Josselin Mouette <joss@debian.org> Tue, 18 Aug 2009 18:23:10 +0200
zenity (2.26.0-1) unstable; urgency=low
diff --git a/debian/patches/01_focus_windows.patch b/debian/patches/01_focus_windows.patch
new file mode 100644
index 00000000..9157f5c5
--- /dev/null
+++ b/debian/patches/01_focus_windows.patch
@@ -0,0 +1,105 @@
+Debian #528455
+GNOME #561131
+
+From b87f233061134f8876803d150f1d1196d2d41561 Mon Sep 17 00:00:00 2001
+From: Lucas Rocha <lucasr@litl.com>
+Date: Thu, 06 Aug 2009 14:42:04 +0000
+Subject: Bug 561131 – zenity windows don't appear with the focus
+
+---
+diff --git a/src/zenity.ui b/src/zenity.ui
+index db30432..5275a07 100644
+--- a/src/zenity.ui
++++ b/src/zenity.ui
+@@ -7,7 +7,7 @@
+ <property name="title" translatable="yes">Calendar selection</property>
+ <property name="window_position">center</property>
+ <property name="type_hint">dialog</property>
+- <property name="focus_on_map">False</property>
++ <property name="focus_on_map">True</property>
+ <property name="has_separator">False</property>
+ <signal name="destroy" handler="gtk_main_quit"/>
+ <child internal-child="vbox">
+@@ -129,7 +129,7 @@
+ <property name="title" translatable="yes">Warning</property>
+ <property name="window_position">center</property>
+ <property name="type_hint">dialog</property>
+- <property name="focus_on_map">False</property>
++ <property name="focus_on_map">True</property>
+ <property name="has_separator">False</property>
+ <signal name="destroy" handler="gtk_main_quit"/>
+ <child internal-child="vbox">
+@@ -213,7 +213,7 @@
+ <property name="title" translatable="yes">Question</property>
+ <property name="window_position">center</property>
+ <property name="type_hint">dialog</property>
+- <property name="focus_on_map">False</property>
++ <property name="focus_on_map">True</property>
+ <property name="has_separator">False</property>
+ <signal name="destroy" handler="gtk_main_quit"/>
+ <child internal-child="vbox">
+@@ -278,7 +278,7 @@
+ <property name="title" translatable="yes">Add a new entry</property>
+ <property name="window_position">center</property>
+ <property name="type_hint">dialog</property>
+- <property name="focus_on_map">False</property>
++ <property name="focus_on_map">True</property>
+ <property name="has_separator">False</property>
+ <signal name="destroy" handler="gtk_main_quit"/>
+ <child internal-child="vbox">
+@@ -377,7 +377,7 @@
+ <property name="default_width">300</property>
+ <property name="default_height">200</property>
+ <property name="type_hint">dialog</property>
+- <property name="focus_on_map">False</property>
++ <property name="focus_on_map">True</property>
+ <property name="has_separator">False</property>
+ <signal name="destroy" handler="gtk_main_quit"/>
+ <child internal-child="vbox">
+@@ -455,7 +455,7 @@
+ <property name="title" translatable="yes">Progress</property>
+ <property name="window_position">center</property>
+ <property name="type_hint">dialog</property>
+- <property name="focus_on_map">False</property>
++ <property name="focus_on_map">True</property>
+ <property name="has_separator">False</property>
+ <signal name="destroy" handler="gtk_main_quit"/>
+ <child internal-child="vbox">
+@@ -551,7 +551,7 @@
+ <property name="title" translatable="yes">Error</property>
+ <property name="window_position">center</property>
+ <property name="type_hint">dialog</property>
+- <property name="focus_on_map">False</property>
++ <property name="focus_on_map">True</property>
+ <property name="has_separator">False</property>
+ <signal name="destroy" handler="gtk_main_quit"/>
+ <child internal-child="vbox">
+@@ -643,7 +643,7 @@
+ <property name="default_width">300</property>
+ <property name="default_height">196</property>
+ <property name="type_hint">dialog</property>
+- <property name="focus_on_map">False</property>
++ <property name="focus_on_map">True</property>
+ <property name="has_separator">False</property>
+ <signal name="destroy" handler="gtk_main_quit"/>
+ <child internal-child="vbox">
+@@ -744,7 +744,7 @@
+ <property name="title" translatable="yes">Information</property>
+ <property name="window_position">center</property>
+ <property name="type_hint">dialog</property>
+- <property name="focus_on_map">False</property>
++ <property name="focus_on_map">True</property>
+ <property name="has_separator">False</property>
+ <signal name="destroy" handler="gtk_main_quit"/>
+ <child internal-child="vbox">
+@@ -827,7 +827,7 @@
+ <property name="default_width">300</property>
+ <property name="default_height">100</property>
+ <property name="type_hint">dialog</property>
+- <property name="focus_on_map">False</property>
++ <property name="focus_on_map">True</property>
+ <property name="has_separator">False</property>
+ <signal name="destroy" handler="gtk_main_quit"/>
+ <child internal-child="vbox">
+--
+cgit v0.8.2
bgstack15