diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-08-21 01:07:54 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-08-21 01:07:54 +0200 |
commit | b78123166627139777fbd206866ee0d1c8bcd040 (patch) | |
tree | 9ea910562faae1be208cfda68f9c4f6795040524 /gui/ModListView.cpp | |
parent | 524fbcdd3e359e07c1ff6e8ae05e03bc35977259 (diff) | |
download | PrismLauncher-b78123166627139777fbd206866ee0d1c8bcd040.tar.gz PrismLauncher-b78123166627139777fbd206866ee0d1c8bcd040.tar.bz2 PrismLauncher-b78123166627139777fbd206866ee0d1c8bcd040.zip |
Contiguous selection and keyboard input for mod lists.
Tweak console to take up the sides.
You can reorder mods from the keyboard.
Diffstat (limited to 'gui/ModListView.cpp')
-rw-r--r-- | gui/ModListView.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/ModListView.cpp b/gui/ModListView.cpp index dc63fcd9..34bd4af2 100644 --- a/gui/ModListView.cpp +++ b/gui/ModListView.cpp @@ -13,7 +13,7 @@ ModListView::ModListView ( QWidget* parent ) setRootIsDecorated ( false ); setSortingEnabled ( false ); setAlternatingRowColors ( true ); - setSelectionMode ( QAbstractItemView::SingleSelection ); + setSelectionMode ( QAbstractItemView::ContiguousSelection ); setHeaderHidden ( false ); setSelectionBehavior(QAbstractItemView::SelectRows); setVerticalScrollBarPolicy ( Qt::ScrollBarAlwaysOn ); |