# HG changeset patch # User js # Date 1158245444 25200 # Node ID a8f3d8db01a2149862b6691f3f3dd63182adc6ea # Parent aa8bbf970aaec09834eb476e59e0f69e54eeba34 [svn] Made the content of the password field in the AudioScrobbler plugin invisible. diff -r aa8bbf970aae -r a8f3d8db01a2 ChangeLog --- 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 + 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 revision [2309] Fixed mk/objective.mk so that there won't be any diff -r aa8bbf970aae -r a8f3d8db01a2 Plugins/General/scrobbler/configure.c --- 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);