diff options
author | Andreas Kling <kling@serenityos.org> | 2020-05-13 00:16:40 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-05-13 00:16:40 +0200 |
commit | c2b5519ce2576387502fe30748080e47a7d663fd (patch) | |
tree | f365fc23b4f5299e4dbd6075770122771f28c5fc /Libraries | |
parent | 23ee68c63ef9efaca532caf24e724c727845be27 (diff) | |
download | serenity-c2b5519ce2576387502fe30748080e47a7d663fd.zip |
LibGUI+WindowServer: Allow apps to use the "move" cursor :^)
Diffstat (limited to 'Libraries')
-rw-r--r-- | Libraries/LibGUI/Window.h | 2 |
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 { |