summaryrefslogtreecommitdiffstats
path: root/helper.cpp
diff options
context:
space:
mode:
authorArno <arno@disconnect.de>2018-11-24 04:18:20 +0100
committerArno <arno@disconnect.de>2018-11-24 04:18:20 +0100
commitab787e997c927bf8e2684b2e1ac667a57f225102 (patch)
tree2f1998924f19535bccbaec5d59ae8e753ee29ae3 /helper.cpp
parent92ada0efad9f0b0a3263e4245cfd1441f4b9f7a9 (diff)
downloadSheMov-ab787e997c927bf8e2684b2e1ac667a57f225102.tar.gz
SheMov-ab787e997c927bf8e2684b2e1ac667a57f225102.tar.bz2
SheMov-ab787e997c927bf8e2684b2e1ac667a57f225102.zip
Dark theme GUI changes
Add icons better suited for dark themes and don't draw an ellipse around the letter when calling Helper::icon and use the theme's text color to better match the desktop theme. Just be a good tenant and respect the user's choices where applicable.
Diffstat (limited to 'helper.cpp')
-rw-r--r--helper.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/helper.cpp b/helper.cpp
index 02b3fac..bfff932 100644
--- a/helper.cpp
+++ b/helper.cpp
@@ -460,8 +460,9 @@ namespace Helper {
p->setRenderHint(QPainter::Antialiasing);
p->setRenderHint(QPainter::TextAntialiasing);
p->setRenderHint(QPainter::SmoothPixmapTransform);
- QFont f("Monospace");
- f.setPixelSize(30);
+ //QFont f("Monospace");
+ QFont f(qApp->font());
+ f.setPixelSize(28);
f.setBold(bold);
p->setPen(fg);
if(drawEllipse){