From 82df9f0c84a1642e5e1f64da0f6189a26de27184 Mon Sep 17 00:00:00 2001 From: Dan Nixon Date: Fri, 27 Jan 2017 10:14:04 +0000 Subject: [PATCH] Hide BFOSD when OSDSW is active --- src/main/io/osd.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/io/osd.c b/src/main/io/osd.c index d99a113f4..107f4b7f3 100755 --- a/src/main/io/osd.c +++ b/src/main/io/osd.c @@ -377,6 +377,10 @@ void osdDrawElements(void) { displayClearScreen(osdDisplayPort); + /* Hide OSD when OSDSW mode is active */ + if (IS_RC_MODE_ACTIVE(BOXOSD)) + return; + #if 0 if (currentElement) osdDrawElementPositioningHelp();