mirror of
https://github.com/glfw/glfw.git
synced 2024-11-12 17:51:48 +00:00
parent
5b7281bd41
commit
ab2247f8f3
@ -216,6 +216,7 @@ information on what to include when reporting a bug.
|
|||||||
- [Cocoa] Bugfix: Value range was ignored for joystick hats and buttons (#888)
|
- [Cocoa] Bugfix: Value range was ignored for joystick hats and buttons (#888)
|
||||||
- [Cocoa] Bugfix: Full screen framebuffer was incorrectly sized for some video
|
- [Cocoa] Bugfix: Full screen framebuffer was incorrectly sized for some video
|
||||||
modes (#682)
|
modes (#682)
|
||||||
|
- [Cocoa] Bugfix: A string object for IME was updated non-idiomatically (#1050)
|
||||||
- [WGL] Added support for `WGL_EXT_colorspace` for OpenGL ES contexts
|
- [WGL] Added support for `WGL_EXT_colorspace` for OpenGL ES contexts
|
||||||
- [WGL] Added support for `WGL_ARB_create_context_no_error`
|
- [WGL] Added support for `WGL_ARB_create_context_no_error`
|
||||||
- [GLX] Added support for `GLX_ARB_create_context_no_error`
|
- [GLX] Added support for `GLX_ARB_create_context_no_error`
|
||||||
|
@ -698,10 +698,11 @@ static const NSRange kEmptyRange = { NSNotFound, 0 };
|
|||||||
selectedRange:(NSRange)selectedRange
|
selectedRange:(NSRange)selectedRange
|
||||||
replacementRange:(NSRange)replacementRange
|
replacementRange:(NSRange)replacementRange
|
||||||
{
|
{
|
||||||
|
[markedText release];
|
||||||
if ([string isKindOfClass:[NSAttributedString class]])
|
if ([string isKindOfClass:[NSAttributedString class]])
|
||||||
[markedText initWithAttributedString:string];
|
markedText = [[NSMutableAttributedString alloc] initWithAttributedString:string];
|
||||||
else
|
else
|
||||||
[markedText initWithString:string];
|
markedText = [[NSMutableAttributedString alloc] initWithString:string];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)unmarkText
|
- (void)unmarkText
|
||||||
|
Loading…
Reference in New Issue
Block a user