fontpanel color well fix

This commit is contained in:
daboe01
2015-06-06 19:03:37 +02:00
parent b1ed299286
commit 4987fb5f15
2 changed files with 11 additions and 1 deletions
+10
View File
@@ -1341,6 +1341,16 @@ var kDelegateRespondsTo_textShouldBeginEditing
[_delegate textViewDidChangeTypingAttributes:[[CPNotification alloc] initWithName:CPTextViewDidChangeTypingAttributesNotification object:self userInfo:nil]];
}
- (CPDictionary)_attributesForFontPanel
{
var attributes = [[_textStorage attributesAtIndex:CPMaxRange(_selectionRange) effectiveRange:nil] copy];
if (![attributes containsKey:CPForegroundColorAttributeName])
[attributes setObject:[self textColor] forKey:CPForegroundColorAttributeName];
return attributes;
}
- (void)delete:(id)sender
{
[self deleteBackward:sender];