diff options
author | Tomaz Canabrava <tcanabrava@kde.org> | 2013-11-08 19:59:21 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-11-09 15:31:58 +0900 |
commit | ba638cae05a3b285cd7a7f5790f9a3290eef7343 (patch) | |
tree | bdfe61a5ff2125c74546165dee9ec17fd9796d48 /qt-ui/mainwindow.cpp | |
parent | d84cdb655e883960f783e2cb55e13a9f21f7d4c2 (diff) | |
download | subsurface-ba638cae05a3b285cd7a7f5790f9a3290eef7343.tar.gz |
Fixes breaking the sizes of the columns of the listView.
This just proves one point: I'm retarded.
I moved some code around and forgot to close the old group, so I created a
group inside 'MainWindow' that handled the ListWidget, wich was not the
right thing to do at all.
Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/mainwindow.cpp')
-rw-r--r-- | qt-ui/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp index ed56d58c0..20c9384ba 100644 --- a/qt-ui/mainwindow.cpp +++ b/qt-ui/mainwindow.cpp @@ -565,7 +565,7 @@ void MainWindow::initialUiSetup() case LIST_MAXIMIZED : on_actionViewList_triggered(); break; case PROFILE_MAXIMIZED : on_actionViewProfile_triggered(); break; } - + settings.endGroup(); settings.beginGroup("ListWidget"); /* if no width are set, use the calculated width for each column; * for that to work we need to temporarily expand all rows */ |