From 1e63579cc6b83e3c89ea4232148119ec3e703bbe Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava Date: Fri, 15 Nov 2013 10:51:39 -0200 Subject: Fix the sentense 'collapse' to 'collapse others' and scroll to it. This patch changes the string 'collapse' to a more meaningfull 'collapse others', it also scrolls the view to the first selec ted index, since after collapsing the others, things could be in the wrong position., Fixes #233 Signed-off-by: Tomaz Canabrava Signed-off-by: Dirk Hohndel --- qt-ui/divelistview.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'qt-ui') diff --git a/qt-ui/divelistview.cpp b/qt-ui/divelistview.cpp index e750e72aa..89ee6a6e7 100644 --- a/qt-ui/divelistview.cpp +++ b/qt-ui/divelistview.cpp @@ -536,7 +536,7 @@ void DiveListView::contextMenuEvent(QContextMenuEvent *event) if (currentLayout == DiveTripModel::TREE) { popup.addAction(tr("expand all"), this, SLOT(expandAll())); popup.addAction(tr("collapse all"), this, SLOT(collapseAll())); - collapseAction = popup.addAction(tr("collapse"), this, SLOT(collapseAll())); + collapseAction = popup.addAction(tr("collapse others"), this, SLOT(collapseAll())); if (d) { popup.addAction(tr("remove dive(s) from trip"), this, SLOT(removeFromTrip())); popup.addAction(tr("create new trip above"), this, SLOT(newTripAbove())); @@ -560,6 +560,7 @@ void DiveListView::contextMenuEvent(QContextMenuEvent *event) if (actionTaken == collapseAction && collapseAction) { this->setAnimated(false); selectDive(current_dive, true); + scrollTo(selectedIndexes().first()); this->setAnimated(true); } event->accept(); -- cgit v1.2.3-70-g09d2