mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 08:20:49 +00:00
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:
parent
3d3450fa2b
commit
6d47950759
2 changed files with 13 additions and 5 deletions
16
ChangeLog
16
ChangeLog
|
@ -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>
|
2010-11-16 Doug Simons <doug.simons@testplant.com>
|
||||||
|
|
||||||
* Source/GSThemeDrawing.m:
|
* Source/GSThemeDrawing.m:
|
||||||
Make border of NSColorWell smaller to more closely match Cocoa metrics. This makes a
|
Make border of NSColorWell smaller to more closely match Cocoa
|
||||||
big difference in small color wells.
|
metrics. This makes a big difference in small color wells.
|
||||||
|
|
||||||
2010-11-16 Doug Simons <doug.simons@testplant.com>
|
2010-11-16 Doug Simons <doug.simons@testplant.com>
|
||||||
|
|
||||||
* Source/NSDrawer.m:
|
* 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
|
2010-11-13 Riccardo Mottola
|
||||||
|
|
||||||
|
@ -27,7 +32,8 @@
|
||||||
Added new icons
|
Added new icons
|
||||||
|
|
||||||
* Source/NSWorkspace.m
|
* 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
|
2010-11-11 Riccardo Mottola
|
||||||
|
|
||||||
|
|
|
@ -658,6 +658,8 @@ static NSNumber *float_plus_one(NSNumber *cur)
|
||||||
[_textStorage beginEditing];
|
[_textStorage beginEditing];
|
||||||
[_textStorage deleteCharactersInRange: range];
|
[_textStorage deleteCharactersInRange: range];
|
||||||
[_textStorage endEditing];
|
[_textStorage endEditing];
|
||||||
|
[self setTypingAttributes: attributes];
|
||||||
|
RELEASE(attributes);
|
||||||
[self didChangeText];
|
[self didChangeText];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue