diff Plugins/General/scrobbler/configure.c @ 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 84169cc8cb2d
children
line wrap: on
line diff
--- 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);