diff options
| author | Felix Ernst <[email protected]> | 2022-05-05 12:54:36 +0200 |
|---|---|---|
| committer | Felix Ernst <[email protected]> | 2022-08-14 14:42:40 +0000 |
| commit | 261b741d5feb356c1fa8a8ac42397f53eb13ca75 (patch) | |
| tree | ddad598b20b2f52b4286cfc3282986dc47c5ccc9 /src/selectionmode/topbar.cpp | |
| parent | eb7a2e18ed00183199e616b7595decd8f40151e2 (diff) | |
Address Nate's UX feedback
-More labels
-More icons
-"Abort" -> "Cancel"
Diffstat (limited to 'src/selectionmode/topbar.cpp')
| -rw-r--r-- | src/selectionmode/topbar.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/selectionmode/topbar.cpp b/src/selectionmode/topbar.cpp index 0a5d3f2cf..5d218dd99 100644 --- a/src/selectionmode/topbar.cpp +++ b/src/selectionmode/topbar.cpp @@ -66,8 +66,7 @@ TopBar::TopBar(QWidget *parent) : BackgroundColorHelper::instance()->controlBackgroundColor(m_label); m_closeButton = new QPushButton(QIcon::fromTheme(QStringLiteral("window-close-symbolic")), "", contentsContainer); - m_closeButton->setToolTip(i18nc("@action:button", "Exit Selection Mode")); - m_closeButton->setAccessibleName(m_closeButton->toolTip()); + m_closeButton->setText(i18nc("@action:button", "Exit Selection Mode")); m_closeButton->setFlat(true); connect(m_closeButton, &QAbstractButton::pressed, this, &TopBar::selectionModeLeavingRequested); |
