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
path: root/intern
diff options
context:
space:
mode:
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_WindowCocoa.mm4
1 files changed, 2 insertions, 2 deletions
diff --git a/intern/ghost/intern/GHOST_WindowCocoa.mm b/intern/ghost/intern/GHOST_WindowCocoa.mm
index 360fe73b648..3f0ed2a4def 100644
--- a/intern/ghost/intern/GHOST_WindowCocoa.mm
+++ b/intern/ghost/intern/GHOST_WindowCocoa.mm
@@ -879,12 +879,12 @@ GHOST_TSuccess GHOST_WindowCocoa::setProgressBar(float progress)
NSBezierPath *progressPath;
/* Draw white track. */
- [[[NSColor whiteColor] colorWithAlphaComponent: 0.6] setFill];
+ [[[NSColor whiteColor] colorWithAlphaComponent:0.6] setFill];
progressPath = [NSBezierPath bezierPathWithRoundedRect:progressRect xRadius:7 yRadius:7];
[progressPath fill];
/* Black progress fill. */
- [[[NSColor blackColor] colorWithAlphaComponent: 0.7] setFill];
+ [[[NSColor blackColor] colorWithAlphaComponent:0.7] setFill];
progressRect = NSInsetRect(progressRect, 2, 2);
progressRect.size.width *= progress;
progressPath = [NSBezierPath bezierPathWithRoundedRect:progressRect xRadius:5 yRadius:5];