diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-21 08:06:59 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-21 08:06:59 (GMT) |
commit | 604b9d13db47430c5f580290a801beae05eef13e (patch) | |
tree | 90a40fd039da5472d189be8b8b34c440f4de0dff /library/tk.tcl | |
parent | fd636b80ebd519e891807305cf5c22f69a03edd6 (diff) | |
parent | 1ad8b81988aa95d3ae080faa924677e7c9d56c1f (diff) | |
download | tk-604b9d13db47430c5f580290a801beae05eef13e.zip tk-604b9d13db47430c5f580290a801beae05eef13e.tar.gz tk-604b9d13db47430c5f580290a801beae05eef13e.tar.bz2 |
same bugfix, but now applied to trunk
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 b259240..deea9db 100644 --- a/library/tk.tcl +++ b/library/tk.tcl @@ -111,10 +111,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] |