Tcl Library Source Code

View Ticket
Login
Ticket UUID: 917798
Title: No redraw during scrolling
Type: Bug Version: None
Submitter: germinator2000 Created on: 2004-03-17 04:33:22
Subsystem: bwidget Assigned To: damonc
Priority: 5 Medium Severity:
Status: Closed Last Modified: 2004-03-23 03:18:53
Resolution: Invalid Closed By: damonc
    Closed on: 2004-03-22 17:41:46
Description:
I'm on Mac OS 10.3.3 , TCL-TK 8.4.6 with BWdiget 1.70 and TKAqua

package require BWidget
proc test_scroll {} {
toplevel .test
ScrolledWindow .test.sc
ScrollableFrame .test.sc.f
.test.sc setwidget .test.sc.f
set path [.test.sc.f getframe]

for {set i 0} {$i < 20 } {incr i} {
checkbutton $path.b$i -text "Probando probando" -variable 
prueba
checkbutton $path.c$i -text "HOLY HOLY" -variable prueba
pack $path.b$i -side top
pack $path.c$i -side top

}
pack .test.sc
}

With this script, when I scroll, the content into the frame is not 
redraw. The content of the frame is not updated until I stop 
scrolling.
Do you know how can I fix that?
User Comments: germinator2000 added on 2004-03-23 03:18:53:
Logged In: YES 
user_id=826909

Fixed in last CVS of TKAqua

damonc added on 2004-03-23 00:41:46:
Logged In: YES 
user_id=50387

This turned out to be an OSX problem unrelated to BWidgets.