summaryrefslogtreecommitdiff
path: root/Libraries
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-05-13 00:16:40 +0200
committerAndreas Kling <kling@serenityos.org>2020-05-13 00:16:40 +0200
commitc2b5519ce2576387502fe30748080e47a7d663fd (patch)
treef365fc23b4f5299e4dbd6075770122771f28c5fc /Libraries
parent23ee68c63ef9efaca532caf24e724c727845be27 (diff)
downloadserenity-c2b5519ce2576387502fe30748080e47a7d663fd.zip
LibGUI+WindowServer: Allow apps to use the "move" cursor :^)
Diffstat (limited to 'Libraries')
-rw-r--r--Libraries/LibGUI/Window.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Libraries/LibGUI/Window.h b/Libraries/LibGUI/Window.h
index 01221a86ed..47cb8fefbe 100644
--- a/Libraries/LibGUI/Window.h
+++ b/Libraries/LibGUI/Window.h
@@ -47,6 +47,8 @@ enum class StandardCursor {
ResizeDiagonalTLBR,
ResizeDiagonalBLTR,
Hand,
+ Drag,
+ Move,
};
class Window : public Core::Object {