summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2007-08-06 15:54:38 +0000
committerLennart Poettering <lennart@poettering.net>2007-08-06 15:54:38 +0000
commitb4a4dce0150b35a003576dca26423ac97b438a23 (patch)
tree290b3337f80fcb19cb67b533b14d204bec16faa6
parent0b4696bc94df235b7cb2c095ed4e4d542de24f74 (diff)
make sure to use black color for subtitle to be compatible with all themes
git-svn-id: file:///home/lennart/svn/public/pavumeter/trunk@48 c62a5a7b-6fe3-0310-9d5a-afe6de46906b
-rw-r--r--src/vumeter.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vumeter.cc b/src/vumeter.cc
index f3d0631..b39789c 100644
--- a/src/vumeter.cc
+++ b/src/vumeter.cc
@@ -121,7 +121,7 @@ MainWindow::MainWindow(const pa_channel_map &map, const char *source_name) :
titleLabel.set_markup("<span size=\"18000\" color=\"black\"><b>PulseAudio Volume Meter</b></span>");
titleLabel.set_alignment(0, 1);
- snprintf(t, sizeof(t), "Showing signal levels of source <b>%s</b>.", source_name);
+ snprintf(t, sizeof(t), "<span color=\"black\">Showing signal levels of source <b>%s</b>.</span>", source_name);
subtitleLabel.set_markup(t);
subtitleLabel.set_alignment(0, 0);