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:
authorCampbell Barton <ideasman42@gmail.com>2014-06-06 01:54:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-06-06 01:54:05 +0400
commitae4ed68dfef8a97056b41393915ca853804dd8fe (patch)
tree7f539c65cca46c00629900f559d11dd826ee8a92 /intern
parent98bf3959b484216000c48d12666ce6120ca15f99 (diff)
Code cleanup: style
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/intern/GHOST_WindowCocoa.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/ghost/intern/GHOST_WindowCocoa.mm b/intern/ghost/intern/GHOST_WindowCocoa.mm
index 0dcc0fff86f..f833fb30542 100644
--- a/intern/ghost/intern/GHOST_WindowCocoa.mm
+++ b/intern/ghost/intern/GHOST_WindowCocoa.mm
@@ -733,7 +733,7 @@ GHOST_WindowCocoa::GHOST_WindowCocoa(
//now has proper multi-monitor support for fullscreen
struct utsname retval;
uname(&retval);
- if(retval.release[0] == '1' && retval.release[1] <= '3') {
+ if (retval.release[0] == '1' && retval.release[1] <= '3') {
m_lionStyleFullScreen = true;
}