Use sweeping broom icon instead of text

This commit is contained in:
Agoston Szepessy 2026-01-11 16:54:48 -08:00
parent 536999daea
commit c93d341441
4 changed files with 5 additions and 2 deletions

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19.36,2.72L20.78,4.14L15.06,9.85C16.13,11.39 16.28,13.24 15.38,14.44L9.06,8.12C10.26,7.22 12.11,7.37 13.65,8.44L19.36,2.72M5.93,17.57C3.92,15.56 2.69,13.16 2.35,10.92L7.23,8.83L14.67,16.27L12.58,21.15C10.34,20.81 7.94,19.58 5.93,17.57Z" /></svg>

After

Width:  |  Height:  |  Size: 315 B

View file

@ -85,6 +85,7 @@
<file>application/scalable/actions/system-help.svg</file>
<file>application/scalable/actions/system-search.svg</file>
<file>application/scalable/actions/system-software-update.svg</file>
<file>application/scalable/actions/sweep.svg</file>
<file>application/scalable/actions/tag.svg</file>
<file>application/scalable/actions/tag-multiple.svg</file>
<file>application/scalable/actions/tag-search.svg</file>

View file

@ -6433,7 +6433,7 @@ Expect some bugs and minor issues, this version is meant for testing purposes.</
</translation>
</message>
<message>
<source>Clear Clipboard</source>
<source>Clear the clipboard immediately</source>
<translation type="unfinished"></translation>
</message>
</context>

View file

@ -689,7 +689,8 @@ MainWindow::MainWindow()
statusBar()->addPermanentWidget(m_progressBar);
m_clearClipboardButton = new QPushButton(statusBar());
m_clearClipboardButton->setText(tr("Clear Clipboard"));
m_clearClipboardButton->setIcon(icons()->icon("sweep"));
m_clearClipboardButton->setToolTip(tr("Clear the clipboard immediately"));
m_clearClipboardButton->setObjectName("clearClipboardButton");
m_clearClipboardButton->setVisible(false);
statusBar()->addPermanentWidget(m_clearClipboardButton);