1
0
Fork 0
forked from wry/wry

autocommit 2022-02-02 01:20:49 CET

This commit is contained in:
Julian Orth 2022-02-02 01:20:49 +01:00
parent 2dbe3ba732
commit 65a7a55b82
8 changed files with 105 additions and 17 deletions

View file

@ -51,6 +51,8 @@ pub struct ServerCursors {
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
pub enum KnownCursor {
Default,
ResizeLeftRight,
ResizeTopBottom,
}
impl ServerCursors {
@ -61,8 +63,8 @@ impl ServerCursors {
ServerCursorTemplate::load(name, None, 16, &paths, ctx)
};
Ok(Self {
// default: load("left_ptr")?,
default: load("left_ptr_watch")?,
default: load("left_ptr")?,
// default: load("left_ptr_watch")?,
resize_right: load("right_side")?,
resize_left: load("left_side")?,
resize_top: load("top_side")?,