diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-10-25 21:06:25 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-10-25 21:06:25 (GMT) |
| commit | 0d5336db012f45753abace489f18f0ca299c6961 (patch) | |
| tree | b1bf3280a9046df99226158978502eeb26f5b0a3 /library/tkfbox.tcl | |
| parent | e97381a6d921de403516d5b761539a450f4af83c (diff) | |
| parent | 1320b8a2a9c1269a345d44d673a7a35707fbbe9c (diff) | |
| download | tk-core-tip-626.zip tk-core-tip-626.tar.gz tk-core-tip-626.tar.bz2 | |
Merge 9.0core-tip-626
Diffstat (limited to 'library/tkfbox.tcl')
| -rw-r--r-- | library/tkfbox.tcl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/tkfbox.tcl b/library/tkfbox.tcl index 39d0f3e..35e4a3c 100644 --- a/library/tkfbox.tcl +++ b/library/tkfbox.tcl @@ -24,7 +24,7 @@ namespace eval ::tk::dialog::file { # Based on Vimix/16/actions/go-up.svg # See https://github.com/vinceliuice/vimix-icon-theme - set updirImageData { + variable updirImageData { <?xml version="1.0" encoding="UTF-8"?> <svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg"> <path d="m7 14v-9l-4 4-1-1 6-6 6 6-1 1-4-4v9z" fill="#000000"/> @@ -45,7 +45,7 @@ namespace eval ::tk::dialog::file { } # Based on https://icons8.com/icon/JXYalxb9XWWd/folder - set folderImageData { + variable folderImageData { <?xml version="1.0" encoding="UTF-8"?> <svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg"> <path d="m0.5 13.5v-12h4.293l2 2h8.707v10z" fill="#59afff"/> @@ -56,7 +56,7 @@ namespace eval ::tk::dialog::file { } # Based on https://icons8.com/icon/mEF_vyjYlnE3/file - set fileImageData { + variable fileImageData { <?xml version="1.0" encoding="UTF-8"?> <svg width="16" height="16" version="1.1" xmlns="http://www.w3.org/2000/svg"> <path d="m2 1h8l4 4v11h-12z" fill="#808080"/> @@ -650,7 +650,7 @@ proc ::tk::dialog::file::Update {w} { # ::tk::dialog::file::SetPathSilently -- # -# Sets data(selectPath) without invoking the trace procedure +# Sets data(selectPath) without invoking the trace procedure # proc ::tk::dialog::file::SetPathSilently {w path} { upvar ::tk::dialog::file::[winfo name $w] data |
