From b67bef3e0d961e1c04eb4f9f449903a625664d5b Mon Sep 17 00:00:00 2001 From: Dominik Honnef Date: Tue, 19 Jul 2022 12:51:56 +0200 Subject: [PATCH] io/pointer: fix order of Cursor comments Signed-off-by: Dominik Honnef --- io/pointer/pointer.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/io/pointer/pointer.go b/io/pointer/pointer.go index aa037284..a4d4fefc 100644 --- a/io/pointer/pointer.go +++ b/io/pointer/pointer.go @@ -119,11 +119,11 @@ const ( // CursorGrabbing is for content that is being grabbed (dragged to be moved). // Usually displayed as a closed hand. CursorGrabbing - // CursorWait is shown when the program is busy and user cannot interact. - // Usually displayed as a hourglass or the system equivalent. - CursorNotAllowed // CursorNotAllowed is shown when the request action cannot be carried out. // Usually displayed as a circle with a line through. + CursorNotAllowed + // CursorWait is shown when the program is busy and user cannot interact. + // Usually displayed as a hourglass or the system equivalent. CursorWait // CursorProgress is shown when the program is busy, but the user can still interact. // Usually displayed as a default cursor with a hourglass.