diff options
author | Matt Corallo <matt@bluematt.me> | 2011-08-03 21:02:07 +0200 |
---|---|---|
committer | Matt Corallo <matt@bluematt.me> | 2011-08-03 21:02:07 +0200 |
commit | 918150048a1d677731ab7f2b3f59fa9a7401d435 (patch) | |
tree | 13931df014fc2289deec9ae3d99c0248e4310b1e | |
parent | e1f13129e89f46df631f9523eea4c0e0448c9b7b (diff) |
Make it clear that setting proxy requires restart to fully apply.
-rw-r--r-- | share/uiproject.fbp | 2 | ||||
-rw-r--r-- | src/uibase.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/share/uiproject.fbp b/share/uiproject.fbp index d5e6b1e36b..7d2c258415 100644 --- a/share/uiproject.fbp +++ b/share/uiproject.fbp @@ -2090,7 +2090,7 @@ <property name="font"></property>
<property name="hidden">0</property>
<property name="id">wxID_ANY</property>
- <property name="label">&Connect through socks4 proxy: </property>
+ <property name="label">&Connect through socks4 proxy (requires restart to apply): </property>
<property name="maximum_size"></property>
<property name="minimum_size"></property>
<property name="name">m_checkBoxUseProxy</property>
diff --git a/src/uibase.cpp b/src/uibase.cpp index 18eec44138..6d219ad667 100644 --- a/src/uibase.cpp +++ b/src/uibase.cpp @@ -367,7 +367,7 @@ COptionsDialogBase::COptionsDialogBase( wxWindow* parent, wxWindowID id, const w wxBoxSizer* bSizer102; bSizer102 = new wxBoxSizer( wxHORIZONTAL ); - m_checkBoxUseProxy = new wxCheckBox( m_panelMain, wxID_ANY, _("&Connect through socks4 proxy: "), wxDefaultPosition, wxDefaultSize, 0 ); + m_checkBoxUseProxy = new wxCheckBox( m_panelMain, wxID_ANY, _("&Connect through socks4 proxy (requires restart to apply): "), wxDefaultPosition, wxDefaultSize, 0 ); bSizer102->Add( m_checkBoxUseProxy, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5 ); bSizer69->Add( bSizer102, 1, wxEXPAND, 5 ); |