Summary: | can't see current day in dark mode | ||
---|---|---|---|
Product: | [Applications] korganizer | Reporter: | Aaron Oldenburg <aaron.oldenburg> |
Component: | monthview | Assignee: | kdepim bugs <kdepim-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | winter |
Priority: | NOR | Keywords: | accessibility |
Version: | 5.11.3 | ||
Target Milestone: | --- | ||
Platform: | Other | ||
OS: | Linux | ||
Latest Commit: | https://commits.kde.org/eventviews/614f757286cb3611cfb922fa0d4cc1378ee6e7b4 | Version Fixed In: | 5.13.0 |
Sentry Crash Report: |
Description
Aaron Oldenburg
2019-10-27 15:23:42 UTC
Can you post a screenshot? I don't see what's wrong with the "dark" theme I use (krita darker) I confirm this. in dark mode I suppose we need to make the current day a lighter color than the other days. developer notes: the offending code is in MonthGraphicsView::drawBackground() i.e. this: if (cell == mScene->selectedCell()) { color = color.darker(115); } if (cell->date() == QDate::currentDate()) { color = color.darker(140); I have a patch under review at https://phabricator.kde.org/D25262 Git commit 614f757286cb3611cfb922fa0d4cc1378ee6e7b4 by Allen Winter. Committed on 16/11/2019 at 15:12. Pushed by winterz into branch 'master'. Month View: background color computation for dark mode theme FIXED-IN: 5.13.0 Differential Revision: https://phabricator.kde.org/D25262 M +7 -2 src/helper.cpp M +9 -0 src/helper.h M +6 -3 src/month/monthscene.cpp https://commits.kde.org/eventviews/614f757286cb3611cfb922fa0d4cc1378ee6e7b4 |