diff options
| author | Nate Graham <[email protected]> | 2025-03-03 12:24:39 -0700 |
|---|---|---|
| committer | Nate Graham <[email protected]> | 2025-03-04 15:16:07 +0000 |
| commit | a1cea477c22e43079986e7204a61c5df385427ee (patch) | |
| tree | edf7759bc22fa1e0540dcf13e21eb190a166716e /src/panels/places | |
| parent | 3c0033d4820ce1c253ce149dae6a9bcdb104a588 (diff) | |
Use nicer split icon
This is the icon that Konsole uses, and it communicates the point better
than the current one.
Related to #68
Diffstat (limited to 'src/panels/places')
| -rw-r--r-- | src/panels/places/placespanel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/panels/places/placespanel.cpp b/src/panels/places/placespanel.cpp index 8b18d3324..cb3f3183b 100644 --- a/src/panels/places/placespanel.cpp +++ b/src/panels/places/placespanel.cpp @@ -42,7 +42,7 @@ PlacesPanel::PlacesPanel(QWidget *parent) slotTearDownRequested(index); }); - m_openInSplitView = new QAction(QIcon::fromTheme(QStringLiteral("view-right-new")), i18nc("@action:inmenu", "Open in Split View")); + m_openInSplitView = new QAction(QIcon::fromTheme(QStringLiteral("view-split-left-right")), i18nc("@action:inmenu", "Open in Split View")); m_openInSplitView->setPriority(QAction::HighPriority); connect(m_openInSplitView, &QAction::triggered, this, [this]() { const QUrl url = currentIndex().data(KFilePlacesModel::UrlRole).toUrl(); |
