summaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authordonal.k.fellows@manchester.ac.uk <dkf>2003-10-28 15:59:31 (GMT)
committerdonal.k.fellows@manchester.ac.uk <dkf>2003-10-28 15:59:31 (GMT)
commit4e8215d0d0ef72bb2ac89fdcf5e773ca8e575288 (patch)
treed8dd893e2bf5de1a425d817b8a89d30e1b0f6b59 /library
parent63a155830f5410b1a726d23511e43cd3d7c4b7cc (diff)
downloadtk-4e8215d0d0ef72bb2ac89fdcf5e773ca8e575288.zip
tk-4e8215d0d0ef72bb2ac89fdcf5e773ca8e575288.tar.gz
tk-4e8215d0d0ef72bb2ac89fdcf5e773ca8e575288.tar.bz2
Make sure we do default placement strategy when placement is empty [Bug 819284]
Diffstat (limited to 'library')
-rw-r--r--library/tk.tcl8
1 files changed, 6 insertions, 2 deletions
diff --git a/library/tk.tcl b/library/tk.tcl
index 1d0d3d0..0d5b2ed 100644
--- a/library/tk.tcl
+++ b/library/tk.tcl
@@ -3,7 +3,7 @@
# Initialization script normally executed in the interpreter for each
# Tk-based application. Arranges class bindings for widgets.
#
-# RCS: @(#) $Id: tk.tcl,v 1.46 2003/02/18 21:24:39 hobbs Exp $
+# RCS: @(#) $Id: tk.tcl,v 1.46.2.1 2003/10/28 15:59:34 dkf Exp $
#
# Copyright (c) 1992-1994 The Regents of the University of California.
# Copyright (c) 1994-1996 Sun Microsystems, Inc.
@@ -79,7 +79,11 @@ proc ::tk::PlaceWindow {w {place ""} {anchor ""}} {
wm withdraw $w
update idletasks
set checkBounds 1
- if {[string equal -len [string length $place] $place "pointer"]} {
+ if {[string equal $place ""]} {
+ set x [expr {([winfo screenwidth $w]-[winfo reqwidth $w])/2}]
+ set y [expr {([winfo screenheight $w]-[winfo reqheight $w])/2}]
+ set checkBounds 0
+ } elseif {[string equal -len [string length $place] $place "pointer"]} {
## place at POINTER (centered if $anchor == center)
if {[string equal -len [string length $anchor] $anchor "center"]} {
set x [expr {[winfo pointerx $w]-[winfo reqwidth $w]/2}]