Add missing assignment to update the typing attributes after deleting

backward in an NSTextView, which accidentally was omitted while
committing r30055.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@31641 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Wolfgang Lux 2010-11-22 16:03:20 +00:00
parent 3d3450fa2b
commit 6d47950759
2 changed files with 13 additions and 5 deletions

View file

@ -1,14 +1,19 @@
2010-11-22 Wolfgang Lux <wolfgang.lux@gmail.com>
* Source/NSTextView_actions.m (-deleteBackward:): Add missing
assignment to update the typing attributes.
2010-11-16 Doug Simons <doug.simons@testplant.com>
* Source/GSThemeDrawing.m:
Make border of NSColorWell smaller to more closely match Cocoa metrics. This makes a
big difference in small color wells.
Make border of NSColorWell smaller to more closely match Cocoa
metrics. This makes a big difference in small color wells.
2010-11-16 Doug Simons <doug.simons@testplant.com>
* Source/NSDrawer.m:
Ensure drawer is visible if parent window became visible since the drawer was opened.
Ensure drawer is visible if parent window became visible since the
drawer was opened.
2010-11-13 Riccardo Mottola
@ -27,7 +32,8 @@
Added new icons
* Source/NSWorkspace.m
Handling of icons for folders of type document, image, system and library.
Handling of icons for folders of type document, image, system and
library.
2010-11-11 Riccardo Mottola

View file

@ -658,6 +658,8 @@ static NSNumber *float_plus_one(NSNumber *cur)
[_textStorage beginEditing];
[_textStorage deleteCharactersInRange: range];
[_textStorage endEditing];
[self setTypingAttributes: attributes];
RELEASE(attributes);
[self didChangeText];
}