diff options
| author | Méven Car <[email protected]> | 2023-08-28 10:13:21 +0200 |
|---|---|---|
| committer | Méven Car <[email protected]> | 2023-08-28 14:08:53 +0200 |
| commit | 0cbc912319f503e94f13b8f06bd83f6e945dd26f (patch) | |
| tree | 5bb975051825f40ba7d1f754aaaed8ba90082789 /src/views | |
| parent | b45c57332f17fa82eb816179f20a84e392e51060 (diff) | |
Use KMessageBox::warningContinueCancel when appropriate
This will prevent saving the "Cancel" + "don't show again" result, which is meaningless.
Diffstat (limited to 'src/views')
| -rw-r--r-- | src/views/dolphinview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/views/dolphinview.cpp b/src/views/dolphinview.cpp index d525df4c6..d0d524196 100644 --- a/src/views/dolphinview.cpp +++ b/src/views/dolphinview.cpp @@ -1058,7 +1058,7 @@ void DolphinView::slotItemsActivated(const KItemSet &indexes) if (indexes.count() > 5) { QString question = i18np("Are you sure you want to open 1 item?", "Are you sure you want to open %1 items?", indexes.count()); - const int answer = KMessageBox::warningTwoActions( + const int answer = KMessageBox::warningContinueCancel( this, question, {}, |
