aboutsummaryrefslogtreecommitdiff
path: root/debian/patches
diff options
context:
space:
mode:
authorGuido Guenther <agx@sigxcpu.org>2008-04-21 15:39:52 +0200
committerGuido Guenther <agx@sigxcpu.org>2008-04-21 15:39:52 +0200
commitfdda4abf689a7345506e28e635b393770500d5f7 (patch)
tree3b4ca7d2c8f54ad9c19dc5840deaa18ea2567b06 /debian/patches
parentenable network manager support (diff)
downloadkrb5-auth-dialog-fdda4abf689a7345506e28e635b393770500d5f7.tar.gz
krb5-auth-dialog-fdda4abf689a7345506e28e635b393770500d5f7.tar.bz2
krb5-auth-dialog-fdda4abf689a7345506e28e635b393770500d5f7.zip
set a default icon
so it shows up in the wm list
Diffstat (limited to 'debian/patches')
-rw-r--r--debian/patches/series1
-rw-r--r--debian/patches/set-default-icon.patch25
2 files changed, 26 insertions, 0 deletions
diff --git a/debian/patches/series b/debian/patches/series
index 5e065be..9ee5b50 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1,3 @@
desktop-file.diff
man-section.diff
+set-default-icon.patch
diff --git a/debian/patches/set-default-icon.patch b/debian/patches/set-default-icon.patch
new file mode 100644
index 0000000..e2b1c91
--- /dev/null
+++ b/debian/patches/set-default-icon.patch
@@ -0,0 +1,25 @@
+From 99b47991b67281627cda341f5e4be2604d3a8a43 Mon Sep 17 00:00:00 2001
+From: Guido Guenther <agx@sigxcpu.org>
+Date: Mon, 21 Apr 2008 15:36:22 +0200
+Subject: [PATCH] set a default icon
+
+so it shows up in the wm list
+---
+ src/krb5-auth-dialog.c | 1 +
+ 1 files changed, 1 insertions(+), 0 deletions(-)
+
+diff --git a/src/krb5-auth-dialog.c b/src/krb5-auth-dialog.c
+index 81f4f38..0bb2e6d 100644
+--- a/src/krb5-auth-dialog.c
++++ b/src/krb5-auth-dialog.c
+@@ -581,6 +581,7 @@ main (int argc, char *argv[])
+
+ xml = glade_xml_new (GLADEDIR "krb5-auth-dialog.glade", NULL, NULL);
+ dialog = glade_xml_get_widget (xml, "krb5_dialog");
++ gtk_window_set_default_icon_name ("gtk-dialog-authentication");
+
+ if (credentials_expiring (NULL))
+ g_timeout_add (CREDENTIAL_CHECK_INTERVAL * 1000, (GSourceFunc)credentials_expiring, NULL);
+--
+1.5.5
+
bgstack15