diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-08-03 23:43:03 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2015-08-03 23:43:03 (GMT) |
commit | 9f976792239fa11da36f575e206bd8e6f1cc0045 (patch) | |
tree | 14f337fc3a278e367090bd37e63a2f3315edc288 /library/demos/text.tcl | |
parent | 711293f0de32d7ac484234fbafab614b20898d7e (diff) | |
parent | 47ca3a5ac9ec9e2f21a3efeb9bb4bda85526a3e7 (diff) | |
download | tk-9f976792239fa11da36f575e206bd8e6f1cc0045.zip tk-9f976792239fa11da36f575e206bd8e6f1cc0045.tar.gz tk-9f976792239fa11da36f575e206bd8e6f1cc0045.tar.bz2 |
Fix [6fe75131c546226b]: doc: tk_messageBox (mac).
Use ttk::scrollbar in stead of scrollbar in various demo's. (ported from androwish branch)
Diffstat (limited to 'library/demos/text.tcl')
-rw-r--r-- | library/demos/text.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/demos/text.tcl b/library/demos/text.tcl index 785e9e6..d1801d1 100644 --- a/library/demos/text.tcl +++ b/library/demos/text.tcl @@ -23,7 +23,7 @@ pack $btns -side bottom -fill x text $w.text -yscrollcommand [list $w.scroll set] -setgrid 1 \ -height 30 -undo 1 -autosep 1 -scrollbar $w.scroll -command [list $w.text yview] +ttk::scrollbar $w.scroll -command [list $w.text yview] pack $w.scroll -side right -fill y pack $w.text -expand yes -fill both |