From 008be59b08cf61dafc5db25b1b5544098659da9c Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Sun, 29 Jan 2017 20:44:53 +0100 Subject: [PATCH] CVolume: replace repaintVolScale() with paint() paint() contains repaintVolScale() --- src/driver/volume.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/driver/volume.cpp b/src/driver/volume.cpp index 4a3112c52..9b66449fd 100644 --- a/src/driver/volume.cpp +++ b/src/driver/volume.cpp @@ -159,7 +159,7 @@ void CVolume::setVolume(const neutrino_msg_t key) if (volscale) { if(vol != g_settings.current_volume) { vol = g_settings.current_volume; - volscale->repaintVolScale(); + volscale->paint(); } }