Added an icon for the outtakes folder

This commit is contained in:
Veronica K. B. Olsen
2020-08-16 17:45:36 +02:00
parent cc3c938e16
commit 3f47aef77b
6 changed files with 5 additions and 1 deletions
@@ -25,6 +25,7 @@ cls_timeline = calendar.svg
cls_object = key.svg cls_object = key.svg
cls_entity = flag.svg cls_entity = flag.svg
cls_custom = star.svg cls_custom = star.svg
cls_archive = delete.svg
cls_trash = trash.svg cls_trash = trash.svg
proj_document = document-text.svg proj_document = document-text.svg
proj_folder = folder.svg proj_folder = folder.svg
@@ -25,6 +25,7 @@ cls_timeline = calendar.svg
cls_object = key.svg cls_object = key.svg
cls_entity = flag.svg cls_entity = flag.svg
cls_custom = star.svg cls_custom = star.svg
cls_archive = delete.svg
cls_trash = trash.svg cls_trash = trash.svg
proj_document = document-text.svg proj_document = document-text.svg
proj_folder = folder.svg proj_folder = folder.svg
@@ -25,6 +25,7 @@ cls_timeline = calendar.svg
cls_object = key.svg cls_object = key.svg
cls_entity = flag.svg cls_entity = flag.svg
cls_custom = star.svg cls_custom = star.svg
cls_archive = delete.svg
cls_trash = trash.svg cls_trash = trash.svg
proj_document = document-text.svg proj_document = document-text.svg
proj_folder = folder.svg proj_folder = folder.svg
@@ -25,6 +25,7 @@ cls_timeline = calendar.svg
cls_object = key.svg cls_object = key.svg
cls_entity = flag.svg cls_entity = flag.svg
cls_custom = star.svg cls_custom = star.svg
cls_archive = delete.svg
cls_trash = trash.svg cls_trash = trash.svg
proj_document = document-text.svg proj_document = document-text.svg
proj_folder = folder.svg proj_folder = folder.svg
-1
View File
@@ -540,7 +540,6 @@ class GuiBuildNovel(QDialog):
* Items that appear in the TRASH folder or have parent set to * Items that appear in the TRASH folder or have parent set to
None (orphaned files). None (orphaned files).
""" """
if theItem is None: if theItem is None:
return False return False
+1
View File
@@ -514,6 +514,7 @@ class GuiIcons:
"cls_object" : (QStyle.SP_DriveHDIcon, "drive-harddisk"), "cls_object" : (QStyle.SP_DriveHDIcon, "drive-harddisk"),
"cls_entity" : (QStyle.SP_DriveHDIcon, "drive-harddisk"), "cls_entity" : (QStyle.SP_DriveHDIcon, "drive-harddisk"),
"cls_custom" : (QStyle.SP_DriveHDIcon, "drive-harddisk"), "cls_custom" : (QStyle.SP_DriveHDIcon, "drive-harddisk"),
"cls_archive" : (QStyle.SP_DriveHDIcon, "drive-harddisk"),
"cls_trash" : (QStyle.SP_DriveHDIcon, "drive-harddisk"), "cls_trash" : (QStyle.SP_DriveHDIcon, "drive-harddisk"),
"proj_document" : (QStyle.SP_FileIcon, "x-office-document"), "proj_document" : (QStyle.SP_FileIcon, "x-office-document"),
"proj_folder" : (QStyle.SP_DirIcon, "folder"), "proj_folder" : (QStyle.SP_DirIcon, "folder"),