diff options
Diffstat (limited to 'library/ttk')
-rw-r--r-- | library/ttk/combobox.tcl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/ttk/combobox.tcl b/library/ttk/combobox.tcl index ff41366..20bfc07 100644 --- a/library/ttk/combobox.tcl +++ b/library/ttk/combobox.tcl @@ -1,5 +1,5 @@ # -# $Id: combobox.tcl,v 1.19 2009/11/12 18:17:14 jenglish Exp $ +# $Id: combobox.tcl,v 1.20 2010/01/19 01:27:41 patthoyts Exp $ # # Combobox bindings. # @@ -271,8 +271,7 @@ proc ttk::combobox::PopdownWindow {cb} { if {![winfo exists $cb.popdown]} { set poplevel [PopdownToplevel $cb.popdown] - - set popdown [ttk::frame $poplevel.f -style ComboboxPopdownFrame] + set popdown [ttk::frame $poplevel.f -style ComboboxPopdownFrame] $scrollbar $popdown.sb \ -orient vertical -command [list $popdown.l yview] @@ -310,6 +309,7 @@ proc ttk::combobox::PopdownToplevel {w} { default - x11 { $w configure -relief flat -borderwidth 0 + wm attributes $w -type combo wm overrideredirect $w true } win32 { |