saved the state of the "hide unconnected" button in settings

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3150 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2010-06-16 19:00:28 +00:00
parent fe6d44ecde
commit e9fabc34e9

View File

@ -284,6 +284,9 @@ void PeersDialog::processSettings(bool bLoad)
// state of peer tree
header->restoreState(Settings->value("PeerTree").toByteArray());
// state of hideUnconnected
ui.hide_unconnected->setChecked(Settings->value("hideUnconnected", false).toBool());
// state of splitter
ui.splitter->restoreState(Settings->value("Splitter").toByteArray());
} else {
@ -292,6 +295,9 @@ void PeersDialog::processSettings(bool bLoad)
// state of peer tree
Settings->setValue("PeerTree", header->saveState());
// state of hideUnconnected
Settings->setValue("hideUnconnected", ui.hide_unconnected->isChecked());
// state of splitter
Settings->setValue("Splitter", ui.splitter->saveState());
}