diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-12-25 13:07:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-12-25 14:47:37 +0300 |
commit | 2e04b98283f7dfa34fc2834d264670a4792e3720 (patch) | |
tree | d2edab148f29dc2633cba39aa3e0ae2266c871c1 | |
parent | e533a6ce688c1ef846c7daad229329e457d78ef5 (diff) | |
download | plus-2e04b98283f7dfa34fc2834d264670a4792e3720.tar.gz plus-2e04b98283f7dfa34fc2834d264670a4792e3720.tar.bz2 plus-2e04b98283f7dfa34fc2834d264670a4792e3720.tar.xz plus-2e04b98283f7dfa34fc2834d264670a4792e3720.zip |
Allow delete all servers from server list.
Servers automatically downloaded will be added again on next client restart.
-rw-r--r-- | src/gui/serverdialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/serverdialog.cpp b/src/gui/serverdialog.cpp index 4ff77bdbd..220f0c1b3 100644 --- a/src/gui/serverdialog.cpp +++ b/src/gui/serverdialog.cpp @@ -479,7 +479,7 @@ void ServerDialog::valueChanged(const gcn::SelectionEvent &) // Update the server and post fields according to the new selection const ServerInfo &myServer = mServersListModel->getServer(index); - mDeleteButton->setEnabled(myServer.save); + mDeleteButton->setEnabled(true); } void ServerDialog::mouseClicked(gcn::MouseEvent &mouseEvent) |