Changeset 2131

Show
Ignore:
Timestamp:
11/22/07 16:23:37 (9 months ago)
Author:
edmanm
Message:

r2149@lysithea: edmanm | 2007-11-22 16:23:21 -0500
Disable the labels that display the user's bridge relay information if the
user is not running a bridge, instead of just disabling the copy button.

Location:
trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/CHANGELOG

    r2129 r2131  
    1818    respectively, to match Tor's defaults. 
    1919  o Make the "Use this proxy for HTTPS also" checkbox checked by default. 
     20  o Disable the labels that display the user's bridge relay information if the 
     21    user is not running a bridge, instead of just disabling the copy button. 
    2022  o Modified the Mac OS X bundle installer to set Vidalia to start 
    2123    automatically on login for the user that installed the bundle. 
  • trunk/src/gui/config/serverpage.cpp

    r2118 r2131  
    194194                                  ? tr("Your bridge relay is not running.") 
    195195                                  : bridge); 
     196  ui.lblYourBridgeRelayIs->setEnabled(!bridge.isEmpty()); 
     197  ui.lblBridgeIdentity->setEnabled(!bridge.isEmpty()); 
    196198  ui.btnCopyBridgeIdentity->setEnabled(!bridge.isEmpty()); 
    197199}