summaryrefslogtreecommitdiffstats
path: root/library/choosedir.tcl
diff options
context:
space:
mode:
authorericm <ericm>2000-03-02 03:02:13 (GMT)
committerericm <ericm>2000-03-02 03:02:13 (GMT)
commitf5534ea9d060d3d5b81d439bbf781a792fd9b950 (patch)
treee4711d8e6bdf036a7da62c6cf9c35b20d05802ce /library/choosedir.tcl
parent9ddd72d5fb7e050ceacbb03b2b3ab4a6bc01d40e (diff)
downloadtk-f5534ea9d060d3d5b81d439bbf781a792fd9b950.zip
tk-f5534ea9d060d3d5b81d439bbf781a792fd9b950.tar.gz
tk-f5534ea9d060d3d5b81d439bbf781a792fd9b950.tar.bz2
* tests/clrpick.test:
* library/clrpick.tcl: Added code to make color chooser dialog inherit screen setting from parent (bug #2334)
Diffstat (limited to 'library/choosedir.tcl')
-rw-r--r--library/choosedir.tcl6
1 files changed, 5 insertions, 1 deletions
diff --git a/library/choosedir.tcl b/library/choosedir.tcl
index 6ccbb9f..659870c 100644
--- a/library/choosedir.tcl
+++ b/library/choosedir.tcl
@@ -6,7 +6,7 @@
# Copyright (c) 1998-2000 by Scriptics Corporation.
# All rights reserved.
#
-# RCS: @(#) $Id: choosedir.tcl,v 1.3 2000/02/14 22:00:17 ericm Exp $
+# RCS: @(#) $Id: choosedir.tcl,v 1.4 2000/03/02 03:02:13 ericm Exp $
# Make sure the tk::dialog namespace, in which all dialogs should live, exists
namespace eval ::tk::dialog {}
@@ -65,6 +65,10 @@ proc ::tk::dialog::chooseDir::tkChooseDirectory { args } {
set opts(-parent) ""
}
+ if { [string equal $opts(-initialdir) ""] } {
+ set opts(-initialdir) [pwd]
+ }
+
set w [toplevel $opts(-parent).choosedirectory]
wm title $w $opts(-title)