diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2018-10-28 14:33:16 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-10-28 15:10:57 +0000 |
commit | 323a71941d655916ac4a8d870fe59d160b4000da (patch) | |
tree | 64dace6de76b24f71ed210f4b0e5991a027c3473 /desktop-widgets | |
parent | 139c749c90f299b8e23a3889142e33e3c187fafd (diff) | |
download | subsurface-323a71941d655916ac4a8d870fe59d160b4000da.tar.gz |
Dive list: remember/restore selection only on view change
The selection was remembered/restored anytime the sort-order
changed. Yet, this is only necessary if the view (tree, list)
changes. Therefore, handle the selection only if this is the
case.
This automatically fixes the problem of the trip-selection
not being remembered if the view doesn't change. If the view
does change, trip selection is lost. But since the list view
doesn't have trips to start with, losing trip-selection seems
like an understandable behavior.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'desktop-widgets')
-rw-r--r-- | desktop-widgets/divelistview.cpp | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/desktop-widgets/divelistview.cpp b/desktop-widgets/divelistview.cpp index 7aeacf82d..ba67a63da 100644 --- a/desktop-widgets/divelistview.cpp +++ b/desktop-widgets/divelistview.cpp @@ -462,15 +462,9 @@ bool DiveListView::eventFilter(QObject *, QEvent *event) return true; } -// NOTE! This loses trip selection, because while we remember the -// dives, we don't remember the trips (see the "currentSelectedDives" -// list). I haven't figured out how to look up the trip from the -// index. TRIP_ROLE vs DIVE_ROLE? void DiveListView::headerClicked(int i) { DiveTripModel::Layout newLayout = i == (int)DiveTripModel::NR ? DiveTripModel::TREE : DiveTripModel::LIST; - rememberSelection(); - unselectDives(); /* No layout change? Just re-sort, and scroll to first selection, making sure all selections are expanded */ if (currentLayout == newLayout) { // If this is the same column as before, change sort order. Otherwise, choose a default @@ -484,17 +478,17 @@ void DiveListView::headerClicked(int i) sortByColumn(i, currentOrder); } else { // clear the model, repopulate with new indexes. - if (currentLayout == DiveTripModel::TREE) { + rememberSelection(); + unselectDives(); + if (currentLayout == DiveTripModel::TREE) backupExpandedRows(); - } reload(newLayout, false); currentOrder = Qt::DescendingOrder; sortByColumn(i, currentOrder); - if (newLayout == DiveTripModel::TREE) { + if (newLayout == DiveTripModel::TREE) restoreExpandedRows(); - } + restoreSelection(); } - restoreSelection(); // remember the new sort column sortColumn = i; } |