mirror of
https://github.com/borgbase/vorta
synced 2024-12-22 07:43:09 +00:00
Add icon for folder on top
button.
* src/vorta/assets/icons/folder-on-top.svg : Add icon to repo. * src/vorta/views/diff_result.py (DiffDialog.set_icons): Set icon. * src/vorta/views/extract_dialog.py (ExtractDialog.set_icons): Set icon.
This commit is contained in:
parent
372b7107dd
commit
cbc0780caa
3 changed files with 5 additions and 0 deletions
3
src/vorta/assets/icons/folder-on-top.svg
Normal file
3
src/vorta/assets/icons/folder-on-top.svg
Normal file
|
@ -0,0 +1,3 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<path fill="#000000" d="M 4 4 L 4 28 L 18 28 L 18 27 L 5 27 L 5 14 L 10 14 L 13 11 L 27 11 L 27 16 L 28 16 L 28 7 L 18 7 L 15 4 L 4 4 z M 23 16 L 18 21 L 18.707031 21.707031 L 22.5 17.914062 L 22.5 28.003906 L 23.5 28.003906 L 23.5 17.914062 L 27.292969 21.707031 L 28 21 L 24 17 L 23 16 z " id="path71" class="ColorScheme-Text" />
|
||||
</svg>
|
After Width: | Height: | Size: 401 B |
|
@ -125,6 +125,7 @@ def __init__(self, archive_newer, archive_older,
|
|||
def set_icons(self):
|
||||
"""Set or update the icons in the right color scheme."""
|
||||
self.bCollapseAll.setIcon(get_colored_icon('angle-up-solid'))
|
||||
self.bFoldersOnTop.setIcon(get_colored_icon('folder-on-top'))
|
||||
|
||||
def treeview_context_menu(self, pos: QPoint):
|
||||
"""Display a context menu for `treeView`."""
|
||||
|
|
|
@ -125,6 +125,7 @@ def retranslateUi(self, dialog):
|
|||
|
||||
def set_icons(self):
|
||||
"""Set or update the icons in the right color scheme."""
|
||||
self.bFoldersOnTop.setIcon(get_colored_icon('folder-on-top'))
|
||||
self.bCollapseAll.setIcon(get_colored_icon('angle-up-solid'))
|
||||
|
||||
def slot_sorted(self, column, order):
|
||||
|
|
Loading…
Reference in a new issue