diff options
| author | Méven Car <[email protected]> | 2022-11-29 18:16:59 +0000 |
|---|---|---|
| committer | Méven Car <[email protected]> | 2022-11-29 18:16:59 +0000 |
| commit | a2c9c05de2dfabbb2bb614390c8e03023dad2bd1 (patch) | |
| tree | 5f34ae95e4cb0ea8ee95d3ee17c28b3cacd25ae9 /src/dolphinviewcontainer.h | |
| parent | de289800b22c654e8e3d8fbaea7bdb496a021b88 (diff) | |
Exit the deleted directory when it is removed
If current directory is a local file, try to find nearest dir ancestor and
open it. Display warning to the user.
Diffstat (limited to 'src/dolphinviewcontainer.h')
| -rw-r--r-- | src/dolphinviewcontainer.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/dolphinviewcontainer.h b/src/dolphinviewcontainer.h index 3ff575970..83d3ed1a1 100644 --- a/src/dolphinviewcontainer.h +++ b/src/dolphinviewcontainer.h @@ -400,6 +400,7 @@ private Q_SLOTS: void slotHiddenFilesShownChanged(bool showHiddenFiles); void slotSortHiddenLastChanged(bool hiddenLast); + void slotCurrentDirectoryRemoved(); void slotOpenUrlFinished(KJob* job); @@ -421,6 +422,11 @@ private: */ void tryRestoreViewState(); + /** + * @return Path of nearest existing ancestor directory. + */ + QString getNearestExistingAncestorOfPath(const QString& path) const; + private: QGridLayout *m_topLayout; |
