diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-05-02 11:39:29 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-05-02 11:39:29 (GMT) |
commit | aa8efe88661be2b380149cb1e1d7c0e9313c4130 (patch) | |
tree | c12fa65a444645b8f89feba3bddeef8e4b31542b /library | |
parent | e9140811cd74d9b4da77039deb20dfca25fd798c (diff) | |
parent | f6ce17f323f35d5c06e37723848cbd7fa8f2f6fa (diff) | |
download | tk-aa8efe88661be2b380149cb1e1d7c0e9313c4130.zip tk-aa8efe88661be2b380149cb1e1d7c0e9313c4130.tar.gz tk-aa8efe88661be2b380149cb1e1d7c0e9313c4130.tar.bz2 |
[Bug 533519]: Window placement with multiple screens
Diffstat (limited to 'library')
-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] |