summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristian Høgsberg <krh@bitplanet.net>2012-06-04 16:10:40 -0400
committerKristian Høgsberg <krh@bitplanet.net>2012-06-04 16:10:40 -0400
commit8591dbf8b50226407568f5cca531b6b411cb0718 (patch)
tree6d1ecf89ae1f0f474a79ae78a67ae63c35e58254
parent5a4e9ff51b737989e85f9aadb0afa2885fdaf1b1 (diff)
window.c: Add watch cursor
-rw-r--r--clients/window.c1
-rw-r--r--clients/window.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/clients/window.c b/clients/window.c
index 9472400..e27f3d3 100644
--- a/clients/window.c
+++ b/clients/window.c
@@ -643,6 +643,7 @@ static const char *cursors[] = {
"top_side",
"xterm",
"hand1",
+ "watch",
};
static void
diff --git a/clients/window.h b/clients/window.h
index 653eaeb..56ca3ea 100644
--- a/clients/window.h
+++ b/clients/window.h
@@ -153,6 +153,7 @@ enum cursor_type {
CURSOR_TOP,
CURSOR_IBEAM,
CURSOR_HAND1,
+ CURSOR_WATCH
};
typedef void (*window_key_handler_t)(struct window *window, struct input *input,