# HG changeset patch # User Sam Lantinga # Date 1187679247 0 # Node ID a25bc0f7955729a8d1842a53d84d333bc5f71523 # Parent 25a87553a59d8430991007261adcdebfd91cd5ad Fixed bug #471 diff -r 25a87553a59d -r a25bc0f79557 src/video/cocoa/SDL_cocoakeyboard.m --- a/src/video/cocoa/SDL_cocoakeyboard.m Mon Aug 20 02:08:37 2007 +0000 +++ b/src/video/cocoa/SDL_cocoakeyboard.m Tue Aug 21 06:54:07 2007 +0000 @@ -380,6 +380,7 @@ text = [[event characters] UTF8String]; if(text && *text) { SDL_SendKeyboardText(data->keyboard, text); + [data->fieldEdit setString:@""]; } } break;