mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-04-03 12:36:08 -04:00
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:
parent
fe6d44ecde
commit
e9fabc34e9
@ -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());
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user