diff options
author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-05-02 11:39:29 (GMT) |
---|---|---|
committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-05-02 11:39:29 (GMT) |
commit | 9526bea30e427e6448f077367815f83345a6b82e (patch) | |
tree | c12fa65a444645b8f89feba3bddeef8e4b31542b /library/tk.tcl | |
parent | 95f2774691cf918952fea1304ad9855ab92f1dad (diff) | |
parent | 6f5c15a19cfde23dcdf2fa157717f1f367ab4d29 (diff) | |
download | tk-9526bea30e427e6448f077367815f83345a6b82e.zip tk-9526bea30e427e6448f077367815f83345a6b82e.tar.gz tk-9526bea30e427e6448f077367815f83345a6b82e.tar.bz2 |
[Bug 533519]: Window placement with multiple screens
Diffstat (limited to 'library/tk.tcl')
-rw-r--r-- | library/tk.tcl | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/library/tk.tcl b/library/tk.tcl index a852a0b..b43b56a 100644 --- a/library/tk.tcl +++ b/library/tk.tcl @@ -112,10 +112,6 @@ proc ::tk::PlaceWindow {w {place ""} {anchor ""}} { set y [expr {([winfo screenheight $w]-[winfo reqheight $w])/2}] set checkBounds 0 } - if {[tk windowingsystem] eq "win32"} { - # Bug 533519: win32 multiple desktops may produce negative geometry. - set checkBounds 0 - } if {$checkBounds} { if {$x < [winfo vrootx $w]} { set x [winfo vrootx $w] |