| Index: ui/gfx/render_text.cc
|
| ===================================================================
|
| --- ui/gfx/render_text.cc (revision 111322)
|
| +++ ui/gfx/render_text.cc (working copy)
|
| @@ -391,8 +391,10 @@
|
| }
|
|
|
| // Paint cursor. Replace cursor is drawn as rectangle for now.
|
| + Rect cursor(GetUpdatedCursorBounds());
|
| if (cursor_visible() && focused())
|
| - canvas->DrawRect(GetUpdatedCursorBounds(), kCursorColor);
|
| + canvas->DrawRectInt(kCursorColor, cursor.x(), cursor.y(),
|
| + cursor.width(), cursor.height());
|
| }
|
|
|
| SelectionModel RenderText::FindCursorPosition(const Point& point) {
|
|
|
| Property changes on: ui\gfx\render_text.cc
|
| ___________________________________________________________________
|
| Deleted: svn:mergeinfo
|
|
|
|
|