Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(231)

Unified Diff: views/controls/textfield/native_textfield_views.cc

Issue 5972008: views: Improve cursor movements on word boundaries. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: cleanups Created 9 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: views/controls/textfield/native_textfield_views.cc
diff --git a/views/controls/textfield/native_textfield_views.cc b/views/controls/textfield/native_textfield_views.cc
index b7c01f81c9abe4f86348799546cde8ee7ec7941e..a21608e8e940b422f1d82ae8aea78cfadeb6cb91 100644
--- a/views/controls/textfield/native_textfield_views.cc
+++ b/views/controls/textfield/native_textfield_views.cc
@@ -472,6 +472,10 @@ bool NativeTextfieldViews::HandleKeyEvent(const KeyEvent& key_event) {
if (controller)
controller->ContentsChanged(textfield_, GetText());
}
+ if (cursor_changed) {
+ is_cursor_visible_ = true;
+ RepaintCursor();
+ }
if (text_changed || cursor_changed) {
UpdateCursorBoundsAndTextOffset();
SchedulePaint();

Powered by Google App Engine
This is Rietveld 408576698