| Index: services/ui/ws/server_window.cc
|
| diff --git a/services/ui/ws/server_window.cc b/services/ui/ws/server_window.cc
|
| index d52bf66ee350fc08c7b57dc8fa989b6bc73c7cc9..64f79e26433a72fb031b6da5422cd2adbf15dcc3 100644
|
| --- a/services/ui/ws/server_window.cc
|
| +++ b/services/ui/ws/server_window.cc
|
| @@ -31,8 +31,10 @@ ServerWindow::ServerWindow(ServerWindowDelegate* delegate,
|
| transient_parent_(nullptr),
|
| is_modal_(false),
|
| visible_(false),
|
| - cursor_id_(mojom::Cursor::CURSOR_NULL),
|
| - non_client_cursor_id_(mojom::Cursor::CURSOR_NULL),
|
| + // Default to POINTER as CURSOR_NULL doesn't change the cursor, it leaves
|
| + // the last non-null cursor.
|
| + cursor_id_(mojom::Cursor::POINTER),
|
| + non_client_cursor_id_(mojom::Cursor::POINTER),
|
| opacity_(1),
|
| can_focus_(true),
|
| properties_(properties),
|
|
|