| Index: ui/gfx/render_text_linux.cc
|
| ===================================================================
|
| --- ui/gfx/render_text_linux.cc (revision 111322)
|
| +++ ui/gfx/render_text_linux.cc (working copy)
|
| @@ -89,8 +89,13 @@
|
| cairo_restore(cr);
|
|
|
| // Paint cursor.
|
| + bounds = GetUpdatedCursorBounds();
|
| if (cursor_visible() && focused())
|
| - canvas->DrawRect(GetUpdatedCursorBounds(), kCursorColor);
|
| + canvas->DrawRectInt(kCursorColor,
|
| + bounds.x(),
|
| + bounds.y(),
|
| + bounds.width(),
|
| + bounds.height());
|
| }
|
|
|
| SelectionModel RenderTextLinux::FindCursorPosition(const Point& point) {
|
|
|
| Property changes on: ui\gfx\render_text_linux.cc
|
| ___________________________________________________________________
|
| Deleted: svn:mergeinfo
|
|
|
|
|