| Summary: | UI improvement: focus/selection indicators | ||
|---|---|---|---|
| Product: | [Applications] kst | Reporter: | Nicolas Brisset <nicolas.brisset> |
| Component: | general | Assignee: | kst |
| Status: | RESOLVED FIXED | ||
| Severity: | wishlist | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.x | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Nicolas Brisset
2006-02-03 22:56:21 UTC
Making the green squares the plot forground color seems like a good idea to try (it may or may not work). I don't personally don't think we should implement the other suggestions. SVN commit 661242 by arwalker:
BUG:121328 as per Barth's response only implement last suggestion. Use user defined colors rather than hard-coded colors for seletion and focus rects.
M +2 -2 kstviewobject.cpp
--- branches/work/kst/1.5/kst/src/libkstapp/kstviewobject.cpp #661241:661242
@@ -464,8 +464,8 @@
void KstViewObject::drawSelectRect(KstPainter& p) {
- p.setBrush(QBrush(Qt::green));
- p.setPen(QPen(Qt::black, 0));
+ p.setBrush(QBrush(foregroundColor()));
+ p.setPen(QPen(backgroundColor(), 0));
drawFocusRect(p);
}
|