| Summary: | phase style; poor color choice for trees in tree view | ||
|---|---|---|---|
| Product: | [Unmaintained] artwork | Reporter: | Matthew Woehlke <mwoehlke.floss> |
| Component: | general | Assignee: | KDE Artists Mailinglist <kde-artists> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Matthew Woehlke
2006-11-08 18:30:34 UTC
Here is a patch demonstrating one possible way to fix this (consistent with many styles, but arguably not the 'softer' phase look):
--- styles/phase/phasestyle.cpp 2006-03-17 04:08:45.000000000 -0600
+++ styles/phase/phasestyle-new.cpp 2006-11-08 13:31:26.331437437 -0600
@@ -1061,7 +1061,7 @@
break;
case KPE_ListViewExpander:
- painter->setPen(group.mid());
+ painter->setPen(group.text());
if (flags & Style_On) {
painter->drawPixmap(x+w/2-4, y+h/2-4, rexpand);
} else {
@@ -1070,7 +1070,7 @@
break;
case KPE_ListViewBranch:
- painter->setPen(group.mid());
+ painter->setPen(group.text());
if (flags & Style_Horizontal) {
painter->drawLine(x, cy, x2, cy);
} else {
SVN commit 770536 by brandybuck: BUG: 137055 Better color choice for tree view branches in darker color schemes. M +19 -5 phasestyle.cpp M +1 -0 phasestyle.h WebSVN link: http://websvn.kde.org/?view=rev&revision=770536 |