Hide ip column in friend list by default

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6728 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
thunder2 2013-09-10 22:04:39 +00:00
parent 961f079882
commit 4f9a107e83
2 changed files with 2 additions and 0 deletions

View File

@ -190,6 +190,7 @@ FriendsDialog::FriendsDialog(QWidget *parent)
ui.friendList->setShowStatusColumn(true);
ui.friendList->setShowLastContactColumn(false);
ui.friendList->setShowAvatarColumn(false);
ui.friendList->setShowIPColumn(false);
ui.friendList->setRootIsDecorated(true);
ui.friendList->setShowGroups(true);
processSettings(true);

View File

@ -145,6 +145,7 @@ MessengerWindow::MessengerWindow(QWidget* parent, Qt::WFlags flags)
ui.friendList->setShowStatusColumn(false);
ui.friendList->setShowLastContactColumn(false);
ui.friendList->setShowAvatarColumn(true);
ui.friendList->setShowIPColumn(false);
ui.friendList->setRootIsDecorated(true);
ui.friendList->setShowGroups(false);
processSettings(true);