From d90ce278762a9fa889b0b2826027a155ade58e44 Mon Sep 17 00:00:00 2001 From: Michael Liebmann Date: Sat, 11 May 2013 10:21:54 +0200 Subject: [PATCH] * COsdSetup::changeNotify: Add handling for volume digits / CVolumeHelper --- src/gui/osd_setup.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gui/osd_setup.cpp b/src/gui/osd_setup.cpp index 9af64ae3c..e97c13a0d 100644 --- a/src/gui/osd_setup.cpp +++ b/src/gui/osd_setup.cpp @@ -947,6 +947,10 @@ bool COsdSetup::changeNotify(const neutrino_locale_t OptionName, void * data) g_Radiotext = NULL; } } + else if(ARE_LOCALES_EQUAL(OptionName, LOCALE_EXTRA_VOLUME_DIGITS)) { + CVolumeHelper::getInstance()->refresh(); + return false; + } return false; }