diff options
author | patthoyts <patthoyts@noemail.net> | 2008-11-22 20:26:10 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@noemail.net> | 2008-11-22 20:26:10 (GMT) |
commit | 4d9b09db83b2067d73657c106a69446d5e22f733 (patch) | |
tree | ef5548e0609df9eb6472f50b9aca687b4ac42c73 /library/ttk | |
parent | 87c8b98369adf4c300b1c5f8dbce873b372d6f9d (diff) | |
download | tk-4d9b09db83b2067d73657c106a69446d5e22f733.zip tk-4d9b09db83b2067d73657c106a69446d5e22f733.tar.gz tk-4d9b09db83b2067d73657c106a69446d5e22f733.tar.bz2 |
[Bug 1939129] combobox dropdown was drawn behind topmost toplevels.
FossilOrigin-Name: 8c83cb430190a69da528e78c95088ee02450c1b9
Diffstat (limited to 'library/ttk')
-rw-r--r-- | library/ttk/combobox.tcl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/library/ttk/combobox.tcl b/library/ttk/combobox.tcl index 1cb325c..5f50ca0 100644 --- a/library/ttk/combobox.tcl +++ b/library/ttk/combobox.tcl @@ -1,5 +1,5 @@ # -# $Id: combobox.tcl,v 1.13 2008/10/28 20:02:03 jenglish Exp $ +# $Id: combobox.tcl,v 1.14 2008/11/22 20:26:11 patthoyts Exp $ # # Combobox bindings. # @@ -405,6 +405,8 @@ proc ttk::combobox::Post {cb} { # Post the listbox: # + wm attribute $popdown \ + -topmost [wm attribute [winfo toplevel $cb] -topmost] wm deiconify $popdown raise $popdown } |