1
0
Fork 0
forked from wry/wry

autocommit 2022-02-21 14:50:55 CET

This commit is contained in:
Julian Orth 2022-02-21 14:50:55 +01:00
parent 7fecc0d1a4
commit ac8fe725ea
4 changed files with 227 additions and 10 deletions

View file

@ -54,6 +54,10 @@ pub enum KnownCursor {
Default,
ResizeLeftRight,
ResizeTopBottom,
ResizeTopLeft,
ResizeTopRight,
ResizeBottomLeft,
ResizeBottomRight,
}
impl ServerCursors {
@ -72,7 +76,7 @@ impl ServerCursors {
resize_left_right: load("h_double_arrow")?,
resize_top_left: load("top_left_corner")?,
resize_top_right: load("top_right_corner")?,
resize_bottom_left: load("top_left_corner")?,
resize_bottom_left: load("bottom_left_corner")?,
resize_bottom_right: load("bottom_right_corner")?,
})
}