Method: TkWindow#cursor_restore
- Defined in:
- lib/tkextlib/tcllib/cursor.rb
#cursor_restore(cursor = None) ⇒ Object
61 62 63 64 65 66 67 68 |
# File 'lib/tkextlib/tcllib/cursor.rb', line 61 def cursor_restore(cursor = None) # Restore the original or previously set cursor for self and all its # descendants. If cursor is specified, that will be used if on any # widget that did not have a preset cursor (set by a previous call # to TkWindow#cursor_propagate). #tk_call_without_enc('::cursor::restore', @path, cursor) Tk::Tcllib::Cursor.cursor_restore(self, cursor) end |