diff options
author | culler <culler> | 2019-08-16 20:56:34 (GMT) |
---|---|---|
committer | culler <culler> | 2019-08-16 20:56:34 (GMT) |
commit | 9a86c1b415620731c6c41691ddf0b5ac0d943c71 (patch) | |
tree | 6024d9674d44098776027ce93163980d964bc31c | |
parent | 4875d4135079ccec5bf1e4e60a5b6a835dbc8602 (diff) | |
download | tk-9a86c1b415620731c6c41691ddf0b5ac0d943c71.zip tk-9a86c1b415620731c6c41691ddf0b5ac0d943c71.tar.gz tk-9a86c1b415620731c6c41691ddf0b5ac0d943c71.tar.bz2 |
Apply patch from Christopher Chavez to make the horizontal paned window demo
legible when run in dark mode.
-rw-r--r-- | library/demos/paned1.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/demos/paned1.tcl b/library/demos/paned1.tcl index 783b7f3..6b21d35 100644 --- a/library/demos/paned1.tcl +++ b/library/demos/paned1.tcl @@ -26,7 +26,7 @@ pack $btns -side bottom -fill x panedwindow $w.pane pack $w.pane -side top -expand yes -fill both -pady 2 -padx 2m -label $w.pane.left -text "This is the\nleft side" -bg yellow -label $w.pane.right -text "This is the\nright side" -bg cyan +label $w.pane.left -text "This is the\nleft side" -fg black -bg yellow +label $w.pane.right -text "This is the\nright side" -fg black -bg cyan $w.pane add $w.pane.left $w.pane.right |