From ff0a4938a5076f2cf84503f65747cfbdb0656c0e Mon Sep 17 00:00:00 2001 From: Andrey Butirsky Date: Thu, 9 Sep 2021 17:59:36 +0300 Subject: [PATCH] fix: Dolphin right click and compress doesn't scroll For newly created items being selected, we had updateViewState() called twice, and the first call blocked work execution needed in the other one --- src/views/dolphinview.cpp | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/views/dolphinview.cpp b/src/views/dolphinview.cpp index e6aecff80b..c4e5be30a4 100644 --- a/src/views/dolphinview.cpp +++ b/src/views/dolphinview.cpp @@ -1611,12 +1611,13 @@ void DolphinView::updateViewState() m_view->scrollToItem(currentIndex); m_scrollToCurrentItem = false; } + m_currentItemUrl = QUrl(); } else { selectionManager->setCurrentItem(0); } + } else { + m_currentItemUrl = QUrl(); } - - m_currentItemUrl = QUrl(); } if (!m_restoredContentsPosition.isNull()) { @@ -1651,8 +1652,10 @@ void DolphinView::updateViewState() } } - selectionManager->beginAnchoredSelection(selectionManager->currentItem()); - selectionManager->setSelectedItems(selectedItems); + if (!selectedItems.isEmpty()) { + selectionManager->beginAnchoredSelection(selectionManager->currentItem()); + selectionManager->setSelectedItems(selectedItems); + } } } }