summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorjan.nijtmans <jan.nijtmans@noemail.net>2012-05-02 11:39:29 (GMT)
committerjan.nijtmans <jan.nijtmans@noemail.net>2012-05-02 11:39:29 (GMT)
commite4a2bfdde1a9fa7936acf9c6f933ac87f159012f (patch)
treec12fa65a444645b8f89feba3bddeef8e4b31542b /library
parent0db0563c34b2791ca73a3ac8fb0a12b964d95772 (diff)
parent24e30136852a5c5b9ef8b0aaec30c6a16df9c2e8 (diff)
downloadtk-e4a2bfdde1a9fa7936acf9c6f933ac87f159012f.zip
tk-e4a2bfdde1a9fa7936acf9c6f933ac87f159012f.tar.gz
tk-e4a2bfdde1a9fa7936acf9c6f933ac87f159012f.tar.bz2
[Bug 533519]: Window placement with multiple screens
FossilOrigin-Name: 62d212e99d9055be45c1b9dc48cfcffcfaa79297
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]