From e8d5f165d145276cb6209b8a0431cbd9bd90029c Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Thu, 2 Dec 2021 13:50:51 +0100 Subject: [PATCH] cc_draw: add method to get body image transparency mode --- src/gui/components/cc_draw.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/components/cc_draw.h b/src/gui/components/cc_draw.h index 29fec95b0..b1d0f1fd9 100644 --- a/src/gui/components/cc_draw.h +++ b/src/gui/components/cc_draw.h @@ -470,6 +470,7 @@ class CCDraw : public COSDFader, public CComponentsSignals, public CCTypes * drive/fb_generic.h */ void setBodyBGImageTranparencyMode(const int &mode) {cc_bg_image_tr_mode = mode;} + int getBodyBGImageTranparencyMode() {return cc_bg_image_tr_mode;} }; #endif