Displaying 1 result from an estimated 1 matches for "logyscroll".
Did you mean:
logxscroll
2008 Nov 03
1
possible tcltk event loop problem
..."log.text.color"),
font=getRcmdr("logFont"), height=log.height, width=log.width,
wrap="none", undo=TRUE))
.log <- LogWindow()
logXscroll <- ttkscrollbar(logFrame, orient="horizontal",
command=function(...) tkxview(.log, ...))
logYscroll <- ttkscrollbar(logFrame,
command=function(...) tkyview(.log, ...))
tkconfigure(.log, xscrollcommand=function(...) tkset(logXscroll, ...))
tkconfigure(.log, yscrollcommand=function(...) tkset(logYscroll, ...))
For the output window:
outputFrame <- tkframe(.commander)...