mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2026-03-11 08:54:48 +00:00
Use sweeping broom icon instead of text
This commit is contained in:
parent
536999daea
commit
c93d341441
4 changed files with 5 additions and 2 deletions
1
share/icons/application/scalable/actions/sweep.svg
Normal file
1
share/icons/application/scalable/actions/sweep.svg
Normal 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 |
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue