In VMware, without animateCursor call in statline proc status line is blank
during experiment startup/shutdown.
In ActiveState Active Tcl animateCursor is call is not needed ?!
Bug found by:
Submitted by:
Requested by:
Reviewed by:
Approved by:
Obtained from:
#****
+proc animateCursor {} {
+ global cursorState
+ global clock_seconds
+
+ if { [clock seconds] == $clock_seconds } {
+ update
+ return
+ }
+ set clock_seconds [clock seconds]
+ if { $cursorState } {
+ .c config -cursor watch
+ set cursorState 0
+ } else {
+ .c config -cursor pirate
+ set cursorState 1
+ }
+ update
+ return
+}
+
#****f* editor.tcl/removeGUILink
# NAME
# removeGUILink -- remove link from GUI
puts $line
} else {
.bottom.textbox config -text "$line"
+ animateCursor
}
}