From 4baa20fb4799538a79d3a89d35923407ba6f34b5 Mon Sep 17 00:00:00 2001 From: Friz64 Date: Thu, 2 Nov 2023 06:01:09 +0100 Subject: [PATCH] Add size_all cursor From Qt, previously overlooked --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 155b16c..68a407f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -360,7 +360,7 @@ impl CursorIcon { CursorIcon::NwseResize => &["bd_double_arrow", "size_fdiag"], CursorIcon::ColResize => &["split_h", "h_double_arrow", "sb_h_double_arrow"], CursorIcon::RowResize => &["split_v", "v_double_arrow", "sb_v_double_arrow"], - CursorIcon::AllScroll => &[], + CursorIcon::AllScroll => &["size_all"], CursorIcon::ZoomIn => &[], CursorIcon::ZoomOut => &[], }