Title: [93544] trunk/Source/WebKit2
Revision
93544
Author
ander...@apple.com
Date
2011-08-22 14:38:41 -0700 (Mon, 22 Aug 2011)

Log Message

Use -[NSApplication updateWindows] to update the current input context
https://bugs.webkit.org/show_bug.cgi?id=66715

Reviewed by Alexey Proskuryakov.

* UIProcess/API/mac/WKView.mm:
(-[WKView _setPluginComplexTextInputState:WebKit::pluginComplexTextInputIdentifier:]):

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (93543 => 93544)


--- trunk/Source/WebKit2/ChangeLog	2011-08-22 21:35:23 UTC (rev 93543)
+++ trunk/Source/WebKit2/ChangeLog	2011-08-22 21:38:41 UTC (rev 93544)
@@ -1,5 +1,15 @@
 2011-08-22  Anders Carlsson  <ander...@apple.com>
 
+        Use -[NSApplication updateWindows] to update the current input context
+        https://bugs.webkit.org/show_bug.cgi?id=66715
+
+        Reviewed by Alexey Proskuryakov.
+
+        * UIProcess/API/mac/WKView.mm:
+        (-[WKView _setPluginComplexTextInputState:WebKit::pluginComplexTextInputIdentifier:]):
+
+2011-08-22  Anders Carlsson  <ander...@apple.com>
+
         The UI process should keep track of whether a plug-in has focus or not
         https://bugs.webkit.org/show_bug.cgi?id=66712
 

Modified: trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm (93543 => 93544)


--- trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm	2011-08-22 21:35:23 UTC (rev 93543)
+++ trunk/Source/WebKit2/UIProcess/API/mac/WKView.mm	2011-08-22 21:38:41 UTC (rev 93544)
@@ -2316,7 +2316,7 @@
     }
 
     // This will force the current input context to be updated to its correct value.
-    [NSTextInputContext currentInputContext];
+    [NSApp updateWindows];
 }
 
 - (void)_setPageHasCustomRepresentation:(BOOL)pageHasCustomRepresentation
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to