diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-06-04 12:47:52 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-06-04 12:47:52 (GMT) |
| commit | 0ecec61e98d40fc515cde1d99e1604b9f419ad11 (patch) | |
| tree | ea85747b2b6c45fb8858f174e03e2d4e9da8c1b4 /library | |
| parent | 1248bb70a754303d9f7f6ac70dac7a04bbd879e4 (diff) | |
| download | tk-bug_3613759.zip tk-bug_3613759.tar.gz tk-bug_3613759.tar.bz2 | |
Suggested fix for [3613759]: ttk::entry and symbolic index namesbug_3613759
Diffstat (limited to 'library')
| -rw-r--r-- | library/xmfbox.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/xmfbox.tcl b/library/xmfbox.tcl index 0578361..e9ada86 100644 --- a/library/xmfbox.tcl +++ b/library/xmfbox.tcl @@ -739,7 +739,7 @@ proc ::tk::MotifFDialog_BrowseFList {w} { $data(fEnt) delete 0 end $data(fEnt) insert 0 [::tk::dialog::file::JoinFile $data(selectPath) \ $data(filter)] - $data(fEnt) xview end + $data(fEnt) xview moveto 1.0 # if it's a multiple selection box, just put in the filenames # otherwise put in the full path as usual @@ -750,7 +750,7 @@ proc ::tk::MotifFDialog_BrowseFList {w} { $data(sEnt) insert 0 [::tk::dialog::file::JoinFile $data(selectPath) \ [lindex $data(selectFile) 0]] } - $data(sEnt) xview end + $data(sEnt) xview moveto 1.0 } # ::tk::MotifFDialog_ActivateFList -- |
