summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Nusser <andre.nusser@googlemail.com>2017-04-20 22:43:13 +0200
committerAndré Nusser <andre.nusser@googlemail.com>2017-04-20 22:45:45 +0200
commit46e70f2177976c3a9fe31b4a9ff28d47b018ca3b (patch)
tree2293505247c1be1fc0ad9c4c52294f3b2509a5d8
parent5ed98cf98a86374aa54d394881d82f7606d1877a (diff)
Make the gray of the version label lighter.
-rw-r--r--plugingui/mainwindow.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugingui/mainwindow.cc b/plugingui/mainwindow.cc
index 1d956de..dde0ef0 100644
--- a/plugingui/mainwindow.cc
+++ b/plugingui/mainwindow.cc
@@ -104,7 +104,7 @@ void MainWindow::repaintEvent(RepaintEvent* repaintEvent)
std::string version_string("v." + std::string(VERSION));
auto version_x = width() - font.textWidth(version_string) - sidebar.width() - 1;
auto version_y = height() - 1;
- painter.setColour(Colour(0.4));
+ painter.setColour(Colour(0.47));
painter.drawText(version_x, version_y, font, version_string);
// Topbar above the sidebars