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:
authorPablo Vazquez <venomgfx@gmail.com>2018-11-03 06:39:40 +0300
committerPablo Vazquez <venomgfx@gmail.com>2018-11-03 06:39:40 +0300
commit9b2fff4ff8181a05434eab927bdba9057e1fc165 (patch)
treed54cd18d5105d261c53c05262a5c5b5300267ce6 /source/blender/editors/animation
parent3bfd2cdad6b65991affabba82543190c6d0ef7b7 (diff)
UI: On markers alternate between filled/outline camera icon on selection.
Instead of between the Camera and Camera Data as they are completely different shapes that don't indicate selection.
Diffstat (limited to 'source/blender/editors/animation')
-rw-r--r--source/blender/editors/animation/anim_markers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/animation/anim_markers.c b/source/blender/editors/animation/anim_markers.c
index e44edae22a1..857400b3810 100644
--- a/source/blender/editors/animation/anim_markers.c
+++ b/source/blender/editors/animation/anim_markers.c
@@ -437,7 +437,7 @@ static void draw_marker(
#ifdef DURIAN_CAMERA_SWITCH
else if (marker->camera) {
icon_id = (marker->flag & SELECT) ? ICON_OUTLINER_OB_CAMERA :
- ICON_OUTLINER_DATA_CAMERA;
+ ICON_CAMERA_DATA;
}
#endif
else {