diff options
author | fvogel <fvogelnew1@free.fr> | 2020-11-07 18:17:35 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2020-11-07 18:17:35 (GMT) |
commit | 5c53cd20a9fb061ca2f2e8bd5695a67302cdd5d4 (patch) | |
tree | bf4ed585391662c37a2a50fecabb8d961d8db138 /library | |
parent | 0fc4b2a839f32fc8819246d1c29451f258ee3a8d (diff) | |
parent | d0302a7516eb49d7b73d356685cda4d964749ce0 (diff) | |
download | tk-5c53cd20a9fb061ca2f2e8bd5695a67302cdd5d4.zip tk-5c53cd20a9fb061ca2f2e8bd5695a67302cdd5d4.tar.gz tk-5c53cd20a9fb061ca2f2e8bd5695a67302cdd5d4.tar.bz2 |
Fix [4ebcc04dc4]: tk fontchooser partial configure on X11 overwrites options not specified.
Diffstat (limited to 'library')
-rw-r--r-- | library/comdlg.tcl | 9 | ||||
-rw-r--r-- | library/fontchooser.tcl | 2 |
2 files changed, 7 insertions, 4 deletions
diff --git a/library/comdlg.tcl b/library/comdlg.tcl index 18df8a6..b4d8978 100644 --- a/library/comdlg.tcl +++ b/library/comdlg.tcl @@ -29,7 +29,8 @@ # {....} # } # -# flags = currently unused. +# flags = a list of flags. Currently supported flags are: +# DONTSETDEFAULTS = skip default values setting # # argList = The list of "-option value" pairs. # @@ -63,8 +64,10 @@ proc tclParseConfigSpec {w specs flags argList} { # 2: set the default values # - foreach cmdsw [array names cmd] { - set data($cmdsw) $def($cmdsw) + if {"DONTSETDEFAULTS" ni $flags} { + foreach cmdsw [array names cmd] { + set data($cmdsw) $def($cmdsw) + } } # 3: parse the argument list diff --git a/library/fontchooser.tcl b/library/fontchooser.tcl index a9bd706..9d49c57 100644 --- a/library/fontchooser.tcl +++ b/library/fontchooser.tcl @@ -111,7 +111,7 @@ proc ::tk::fontchooser::Configure {args} { set cache [dict create -parent $S(-parent) -title $S(-title) \ -font $S(-font) -command $S(-command)] - set r [tclParseConfigSpec [namespace which -variable S] $specs "" $args] + set r [tclParseConfigSpec [namespace which -variable S] $specs DONTSETDEFAULTS $args] if {![winfo exists $S(-parent)]} { set code [list TK LOOKUP WINDOW $S(-parent)] set err "bad window path name \"$S(-parent)\"" |