diff --git a/retroshare-gui/src/gui/ChatLobbyWidget.cpp b/retroshare-gui/src/gui/ChatLobbyWidget.cpp index c91df489d..07d5112be 100644 --- a/retroshare-gui/src/gui/ChatLobbyWidget.cpp +++ b/retroshare-gui/src/gui/ChatLobbyWidget.cpp @@ -1171,7 +1171,7 @@ void ChatLobbyWidget::processSettings(bool bLoad) if (bLoad) { // load settings - + ui.splitter->restoreState(Settings->value("splitter").toByteArray()); // state of the lists Header->restoreState(Settings->value("lobbyList").toByteArray()); @@ -1180,7 +1180,7 @@ void ChatLobbyWidget::processSettings(bool bLoad) setShowSubscribeColumn(Settings->value("showSubscribeColumn", !ui.lobbyTreeWidget->isColumnHidden(COLUMN_SUBSCRIBED)).toBool()); } else { // save settings - + Settings->setValue("splitter", ui.splitter->saveState()); // state of the lists Settings->setValue("lobbyList", Header->saveState());