summaryrefslogtreecommitdiffstats
path: root/library/tk.tcl
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-05-02 11:39:29 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-05-02 11:39:29 (GMT)
commitbfeee5bf082e7cac82ff8616fe11502e97f2ed3c (patch)
treec12fa65a444645b8f89feba3bddeef8e4b31542b /library/tk.tcl
parente9f82758411ef773b62638334f16b794cf990f5b (diff)
parent16d1be046a47a326a015e8bf3086ecd36c0b6e6d (diff)
downloadtk-bfeee5bf082e7cac82ff8616fe11502e97f2ed3c.zip
tk-bfeee5bf082e7cac82ff8616fe11502e97f2ed3c.tar.gz
tk-bfeee5bf082e7cac82ff8616fe11502e97f2ed3c.tar.bz2
[Bug 533519]: Window placement with multiple screens
Diffstat (limited to 'library/tk.tcl')
-rw-r--r--library/tk.tcl4
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]