Mercurial > audlegacy
changeset 1688:a8f3d8db01a2 trunk
[svn] Made the content of the password field in the AudioScrobbler plugin invisible.
author | js |
---|---|
date | Thu, 14 Sep 2006 07:50:44 -0700 |
parents | aa8bbf970aae |
children | b59d6c3258fc |
files | ChangeLog Plugins/General/scrobbler/configure.c |
diffstat | 2 files changed, 10 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Thu Sep 14 07:40:39 2006 -0700 +++ b/ChangeLog Thu Sep 14 07:50:44 2006 -0700 @@ -1,3 +1,12 @@ +2006-09-14 14:40:39 +0000 Jonathan Schleifer <js@h3c.de> + revision [2311] + Just saw another bug in the same line. The if was always false. + + + Changes: Modified: + +1 -1 trunk/mk/objective.mk + + 2006-09-14 14:38:06 +0000 Jonathan Schleifer <js@h3c.de> revision [2309] Fixed mk/objective.mk so that there won't be any
--- a/Plugins/General/scrobbler/configure.c Thu Sep 14 07:40:39 2006 -0700 +++ b/Plugins/General/scrobbler/configure.c Thu Sep 14 07:50:44 2006 -0700 @@ -118,6 +118,7 @@ gtk_table_attach_defaults (GTK_TABLE (table1), entry1, 1, 2, 2, 3); entry2 = gtk_entry_new (); + gtk_entry_set_visibility(GTK_ENTRY(entry2), FALSE); gtk_widget_show (entry2); gtk_table_attach_defaults (GTK_TABLE (table1), entry2, 1, 2, 3, 4); g_signal_connect(entry2, "changed", (GCallback) saveconfig, NULL);