┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/views/dolphinview.cpp
diff options
context:
space:
mode:
authorFelix Ernst <[email protected]>2023-08-22 12:15:22 +0000
committerMéven Car <[email protected]>2023-08-23 16:54:52 +0000
commit11fb9344c0fac2544479dbd7a9913eba740b74b5 (patch)
tree88f344907d2bef81b42dfb83c7da8690994d7c8b /src/views/dolphinview.cpp
parentd27ee07de7558470ef7b497fbe3d3504ce7cad07 (diff)
Allow to not ask again confirmation when opening 5 or more files or terminal at once
BUG: 473513
Diffstat (limited to 'src/views/dolphinview.cpp')
-rw-r--r--src/views/dolphinview.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/views/dolphinview.cpp b/src/views/dolphinview.cpp
index e0d01d1e8..1d01b4c98 100644
--- a/src/views/dolphinview.cpp
+++ b/src/views/dolphinview.cpp
@@ -1093,11 +1093,12 @@ void DolphinView::slotItemsActivated(const KItemSet &indexes)
{},
#endif
KGuiItem(i18ncp("@action:button", "Open %1 Item", "Open %1 Items", indexes.count()), QStringLiteral("document-open")),
- KStandardGuiItem::cancel());
+ KStandardGuiItem::cancel(),
+ QStringLiteral("ConfirmOpenManyFolders"));
#if KWIDGETSADDONS_VERSION >= QT_VERSION_CHECK(5, 100, 0)
- if (answer != KMessageBox::PrimaryAction) {
+ if (answer != KMessageBox::PrimaryAction && answer != KMessageBox::Continue) {
#else
- if (answer != KMessageBox::Yes) {
+ if (answer != KMessageBox::Yes && answer != KMessageBox::Continue) {
#endif
return;
}