diff options
| author | Antonio Prcela <[email protected]> | 2020-05-14 16:17:31 -0600 |
|---|---|---|
| committer | Nate Graham <[email protected]> | 2020-05-14 16:20:14 -0600 |
| commit | a291c5999035bb17fe764c1910c3e78ba041f8ac (patch) | |
| tree | e3942ce0cd99492b3d1e100e4dc1552e90854384 /src/dolphintabwidget.h | |
| parent | 8cb3521cb7b2debfeff5d983bc3eb6ada1b66537 (diff) | |
Allow to copy or move selection to the other split view
Summary:
FEATURE: 276167
Default keyboard shortcuts set to `SHIFT+F5` for `copy`, `SHIFT+F6` for `move`
Reviewers: #dolphin, elvisangelaccio, ngraham, meven, dfaure
Reviewed By: #dolphin, elvisangelaccio, ngraham, meven, dfaure
Subscribers: yurchor, kde-doc-english, dfaure, meven, kfm-devel
Tags: #dolphin, #documentation
Differential Revision: https://phabricator.kde.org/D29006
Diffstat (limited to 'src/dolphintabwidget.h')
| -rw-r--r-- | src/dolphintabwidget.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/dolphintabwidget.h b/src/dolphintabwidget.h index 746aec6c6..f0ce11ce8 100644 --- a/src/dolphintabwidget.h +++ b/src/dolphintabwidget.h @@ -189,6 +189,12 @@ public slots: */ void restoreClosedTab(const QByteArray& state); + /** Copies all selected items to the inactive view. */ + void copyToInactiveSplitView(); + + /** Moves all selected items to the inactive view. */ + void moveToInactiveSplitView(); + private slots: /** * Opens the tab with the index \a index in a new Dolphin instance and closes |
