| Index: views/widget/native_widget_gtk.cc
|
| diff --git a/views/widget/native_widget_gtk.cc b/views/widget/native_widget_gtk.cc
|
| index b9995df1baef169ab8d118b00d7c48c52aa3ab22..dc3ece59a4613b9f0b6427c896125d5c4be49550 100644
|
| --- a/views/widget/native_widget_gtk.cc
|
| +++ b/views/widget/native_widget_gtk.cc
|
| @@ -1331,9 +1331,7 @@ void NativeWidgetGtk::SchedulePaintInRect(const gfx::Rect& rect) {
|
|
|
| void NativeWidgetGtk::SetCursor(gfx::NativeCursor cursor) {
|
| #if defined(TOUCH_UI)
|
| - if (ui::TouchFactory::GetInstance()->keep_mouse_cursor())
|
| - cursor = gfx::GetCursor(GDK_ARROW);
|
| - else if (!ui::TouchFactory::GetInstance()->is_cursor_visible())
|
| + if (!ui::TouchFactory::GetInstance()->is_cursor_visible())
|
| cursor = gfx::GetCursor(GDK_BLANK_CURSOR);
|
| #endif
|
| // |window_contents_| is placed on top of |widget_|. So the cursor needs to be
|
|
|