From 1678a2b30fd83875b2c57e15b770fd11d55dfed1 Mon Sep 17 00:00:00 2001 From: 1024jp <1024jp@wolfrosch.com> Date: Fri, 12 Feb 2016 13:12:37 +0900 Subject: [PATCH] Fix cannot open window on Mountain Lion --- CHANGELOG.md | 9 +++++++++ CotEditor/Sources/CEStatusBarController.m | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f34d1b84a..6ab8d2abf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ Change Log develop -------------------------- +### Fixes + +- Fix an issue where application couldn't open document window on Mountain Lion. + + + +2.4.1 (103) +-------------------------- + ### Improvements - Update JSON syntax style: diff --git a/CotEditor/Sources/CEStatusBarController.m b/CotEditor/Sources/CEStatusBarController.m index 9985599a6..8dc97c562 100644 --- a/CotEditor/Sources/CEStatusBarController.m +++ b/CotEditor/Sources/CEStatusBarController.m @@ -225,7 +225,7 @@ static NSColor *kLabelColor; attrValue = [[NSAttributedString alloc] initWithString:value]; } else { attrValue = [[NSAttributedString alloc] initWithString:@"-" - attributes:@{NSForegroundColorAttributeName: [NSColor labelColor]}]; + attributes:@{NSForegroundColorAttributeName: [NSColor disabledControlTextColor]}]; } [status appendAttributedString:attrValue];