Added a Splitter for Group Chat, and move the Buttons to the bottom, to get more space for Group Chat history.

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3399 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2010-08-28 00:30:18 +00:00
parent d5090ea33c
commit d352621f74
2 changed files with 141 additions and 101 deletions

View file

@ -294,6 +294,7 @@ void PeersDialog::processSettings(bool bLoad)
// state of splitter
ui.splitter->restoreState(Settings->value("Splitter").toByteArray());
ui.splitter_2->restoreState(Settings->value("GroupChatSplitter").toByteArray());
} else {
// save settings
@ -308,6 +309,7 @@ void PeersDialog::processSettings(bool bLoad)
// state of splitter
Settings->setValue("Splitter", ui.splitter->saveState());
Settings->setValue("GroupChatSplitter", ui.splitter_2->saveState());
}
Settings->endGroup();