Commit 03c4e509 authored by Jack Jansen's avatar Jack Jansen

Added setwatchcursor() and setarrowcursor() functions

parent 6e4ff3fc
......@@ -78,6 +78,16 @@ def windowbounds(width, height):
next_window_x, next_window_y = next_window_x + 8, next_window_y + 20 # jvr
return l, t, r, b
_watch = None
def setwatchcursor():
global _watch
if _watch == None:
_watch = GetCursor(4).data
SetCursor(_watch)
def setarrowcursor():
SetCursor(qd.arrow)
class Application:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment