From 7f7e25d586d91782763eb3f08a3e6d81440fc9c5 Mon Sep 17 00:00:00 2001 From: "Robert C. Helling" Date: Sat, 1 Nov 2014 21:13:49 +0100 Subject: Make invisible stars stand out less As my wife kept pointing out for a long time, the greyed out stars were heavier as images than the yellow selected stars. This patch makes the grey stars semi-transparent. Signed-off-by: Robert C. Helling Acked-by: Andrea Fischer-Helling Signed-off-by: Dirk Hohndel --- qt-ui/starwidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qt-ui') diff --git a/qt-ui/starwidget.cpp b/qt-ui/starwidget.cpp index a56ba0b28..51281ab28 100644 --- a/qt-ui/starwidget.cpp +++ b/qt-ui/starwidget.cpp @@ -109,7 +109,7 @@ QImage grayImage(const QImage& coloredImg) QColor c(rgb); int gray = (c.red() + c.green() + c.blue()) / 3; - img.setPixel(i, j, qRgb(gray, gray, gray)); + img.setPixel(i, j, qRgba(gray, gray, gray, 60)); } } -- cgit v1.2.3-70-g09d2