Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHarley Acheson <harley.acheson@gmail.com>2019-09-06 17:44:50 +0300
committerHarley Acheson <harley.acheson@gmail.com>2019-09-06 17:44:50 +0300
commit24d05b5ff9d6d85a7ff8f58b47bef31b5dbcec81 (patch)
tree58c82ea4c18b14097fa280b1add57a2a3c364985 /source/blender/editors/space_file/filelist.c
parent61cc604da70550cdda0e20ef26e4e563eb22421a (diff)
UI: File Browser Large Icon Update
Replaces the large icons used in the File Browser with updated versions by Andrzej Ambroz (jendrzych). Differential Revision: https://developer.blender.org/D5698 Reviewed by Brecht Van Lommel
Diffstat (limited to 'source/blender/editors/space_file/filelist.c')
-rw-r--r--source/blender/editors/space_file/filelist.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/source/blender/editors/space_file/filelist.c b/source/blender/editors/space_file/filelist.c
index df783358625..1a7608ba291 100644
--- a/source/blender/editors/space_file/filelist.c
+++ b/source/blender/editors/space_file/filelist.c
@@ -334,15 +334,16 @@ enum {
#define SPECIAL_IMG_SIZE 256
#define SPECIAL_IMG_ROWS 1
-#define SPECIAL_IMG_COLS 6
+#define SPECIAL_IMG_COLS 7
enum {
SPECIAL_IMG_DOCUMENT = 0,
- SPECIAL_IMG_FOLDER = 1,
- SPECIAL_IMG_PARENT = 2,
- SPECIAL_IMG_DRIVE_FIXED = 3,
- SPECIAL_IMG_DRIVE_ATTACHED = 4,
- SPECIAL_IMG_DRIVE_REMOTE = 5,
+ SPECIAL_IMG_UNSUPORTED = 1,
+ SPECIAL_IMG_FOLDER = 2,
+ SPECIAL_IMG_PARENT = 3,
+ SPECIAL_IMG_DRIVE_FIXED = 4,
+ SPECIAL_IMG_DRIVE_ATTACHED = 5,
+ SPECIAL_IMG_DRIVE_REMOTE = 6,
SPECIAL_IMG_MAX,
};