Changeset 369

Show
Ignore:
Timestamp:
07/16/06 15:31:38 (2 years ago)
Author:
nicfit
Message:

Show masked password to prevent accidently erasing by hitting Ok

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/src/plugins/audioscrobbler.py

    r367 r369  
    120120        # Populate current config values 
    121121        self.config_glade.get_widget('username_entry').set_text(self.user) 
    122         self.config_glade.get_widget('password_entry').set_text('') 
    123         self.config_glade.get_widget('password_verify_entry').set_text('') 
     122        self.config_glade.get_widget('password_entry').set_text(self.passwd) 
     123        self.config_glade.get_widget('password_verify_entry')\ 
     124                         .set_text(self.passwd) 
    124125        self.config_window.show() 
    125126