summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2023-09-03 18:56:28 (GMT)
committerfvogel <fvogelnew1@free.fr>2023-09-03 18:56:28 (GMT)
commitf9e5d5173b886c80b3d7addf20dd7a608e5dbcb6 (patch)
treef4d67c07422b2799e92fd5313093de40cdfa883a
parente60c684ac99cf095a0f0d2a1c86815f24fe00eb7 (diff)
parent0ca14ff12898827f056a6c3aa5bfc5badec11bec (diff)
downloadtk-f9e5d5173b886c80b3d7addf20dd7a608e5dbcb6.zip
tk-f9e5d5173b886c80b3d7addf20dd7a608e5dbcb6.tar.gz
tk-f9e5d5173b886c80b3d7addf20dd7a608e5dbcb6.tar.bz2
Fix [4468ed16d3]: Iconlist: do not use options database for initial foreground text color. Patch from Christopher Chavez (for 8.6 only).
-rw-r--r--library/iconlist.tcl9
1 files changed, 2 insertions, 7 deletions
diff --git a/library/iconlist.tcl b/library/iconlist.tcl
index 6f46ba4..75a0741 100644
--- a/library/iconlist.tcl
+++ b/library/iconlist.tcl
@@ -377,7 +377,7 @@ package require Tk
method DrawSelection {} {
$canvas delete selection
- $canvas itemconfigure selectionText -fill black
+ $canvas itemconfigure selectionText -fill $fill
$canvas dtag selectionText
set cbg [ttk::style lookup TEntry -selectbackground focus]
set cfg [ttk::style lookup TEntry -selectforeground focus]
@@ -422,12 +422,7 @@ package require Tk
set noScroll 1
set selection {}
set index(anchor) ""
- set fg [option get $canvas foreground Foreground]
- if {$fg eq ""} {
- set fill black
- } else {
- set fill $fg
- }
+ set fill black
# Creates the event bindings.
#