Ticket UUID: | 886304 | |||
Title: | BWidgets1.7.0 bug in Notebook:bindtabs command | |||
Type: | Bug | Version: | None | |
Submitter: | donp1 | Created on: | 2004-01-28 16:01:38 | |
Subsystem: | bwidget | Assigned To: | hobbs | |
Priority: | 5 Medium | Severity: | ||
Status: | Closed | Last Modified: | 2004-02-04 05:03:07 | |
Resolution: | Fixed | Closed By: | hobbs | |
Closed on: | 2004-02-03 22:03:07 | |||
Description: |
I am using ActiveTcl8.4.4.0 with BWidgets1.7.0. The Notebook widgets bindtabs command seems to be stripping off the first two characters of the tabname. Here is a small script to replicate the bug. #!/bin/env wish proc print_tab_name {tab} { puts $tab } # Load BWidget package into the interpreter package require BWidget wm withdraw . # Create Notebook set notebook [NoteBook .nb] $notebook insert end TestTab -text "Test Tab" $notebook compute_size pack $notebook -fill both -expand yes -padx 4 -pady 4 $notebook raise [$notebook page 0] $notebook bindtabs <Button-1> "print_tab_name" wm deiconify . | |||
User Comments: |
hobbs added on 2004-02-04 05:03:07:
Logged In: YES user_id=72656 working fine in head donp1 added on 2004-01-29 00:02:18: Logged In: YES user_id=849486 Additionally, this command is not correctly returning the tab name that was specified when it was created. For instance, it will return TABNAME:text or TABNAME:top or TABNAME:bot. These seem to be the names of the embedded widgets within the tab. donp1 added on 2004-01-28 23:57:54: File Added - 75008: BWidget-1.7.0.patch |
Attachments:
- BWidget-1.7.0.patch [download] added by donp1 on 2004-01-28 23:57:54. [details]