┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinviewcontainer.cpp
diff options
context:
space:
mode:
authorFelix Ernst <[email protected]>2022-05-16 15:53:18 +0200
committerFelix Ernst <[email protected]>2022-08-14 14:42:40 +0000
commite464b58c33b27ea331225778c60ba3aa8b7fb1d5 (patch)
tree2665f44f8b0c4b44e5b2548279bbd427606e181b /src/dolphinviewcontainer.cpp
parent261b741d5feb356c1fa8a8ac42397f53eb13ca75 (diff)
Address Nate's UX feedback: Episode 2
- Make Esc leave selection mode and have it only clear selection when already outside selection mode. - Let translators know that the "More" overflow button should only have a short text on it. - Fix a crash that happened when any code tried to exit selection mode even though selection mode had never been enabled to begin with.
Diffstat (limited to 'src/dolphinviewcontainer.cpp')
-rw-r--r--src/dolphinviewcontainer.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/dolphinviewcontainer.cpp b/src/dolphinviewcontainer.cpp
index d69aa119f..f38995603 100644
--- a/src/dolphinviewcontainer.cpp
+++ b/src/dolphinviewcontainer.cpp
@@ -379,13 +379,14 @@ void DolphinViewContainer::setSelectionModeEnabled(bool enabled, KActionCollecti
m_view->setSelectionModeEnabled(enabled);
if (!enabled) {
+ if (!wasEnabled) {
+ return; // nothing to do here
+ }
Q_CHECK_PTR(m_selectionModeTopBar); // there is no point in disabling selectionMode when it wasn't even enabled once.
Q_CHECK_PTR(m_selectionModeBottomBar);
m_selectionModeTopBar->setVisible(false, WithAnimation);
m_selectionModeBottomBar->setVisible(false, WithAnimation);
- if (wasEnabled) {
- Q_EMIT selectionModeChanged(false);
- }
+ Q_EMIT selectionModeChanged(false);
return;
}