blob: 04a79c8b80f3095a7adf443a91511fc8baa1aac6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
From: Guido Guenther <agx@sigxcpu.org>
Date: Sat, 14 Jun 2008 18:53:15 +0200
Subject: [PATCH] set a more gnomeisch invisible-char
---
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 a45c480..be6c29f 100644
--- a/src/krb5-auth-dialog.c
+++ b/src/krb5-auth-dialog.c
@@ -897,6 +897,7 @@ ka_create_gtk_secure_entry (GladeXML *xml G_GNUC_UNUSED,
if (!strcmp(name, "krb5_entry")) {
entry = gtk_secure_entry_new ();
gtk_secure_entry_set_activates_default(GTK_SECURE_ENTRY(entry), TRUE);
+ gtk_widget_set(entry, "invisible-char", 0x25cf, NULL);
gtk_widget_show (entry);
} else {
g_warning("Don't know anything about widget %s", name);
--
|