summaryrefslogtreecommitdiffstats
path: root/library
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)
commitaa8efe88661be2b380149cb1e1d7c0e9313c4130 (patch)
treec12fa65a444645b8f89feba3bddeef8e4b31542b /library
parente9140811cd74d9b4da77039deb20dfca25fd798c (diff)
parentf6ce17f323f35d5c06e37723848cbd7fa8f2f6fa (diff)
downloadtk-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.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]