From a612d20ee6fb1409d9bc22ce4fa938cbc33f4039 Mon Sep 17 00:00:00 2001 From: Igor Timofeev Date: Wed, 29 Aug 2018 00:16:18 +0300 Subject: [PATCH] aefef --- Applications/MultiScreen/MultiScreen.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Applications/MultiScreen/MultiScreen.lua b/Applications/MultiScreen/MultiScreen.lua index fa0ae31e..95a56950 100644 --- a/Applications/MultiScreen/MultiScreen.lua +++ b/Applications/MultiScreen/MultiScreen.lua @@ -40,6 +40,7 @@ local function clearScreens() for address in component.list("screen") do if address ~= mainScreenAddress then GPUProxy.bind(address, false) + GPUProxy.setDepth(8) GPUProxy.setResolution(baseResolutionWidth, baseResolutionHeight) GPUProxy.setBackground(config.backgroundColor) GPUProxy.fill(1, 1, baseResolutionWidth, baseResolutionHeight, " ") @@ -247,7 +248,7 @@ local function mainMenu(force) local e1, e2 = event.pull("touch") if e2 ~= mainScreenAddress then GPUProxy.bind(e2, false) - + GPUProxy.setDepth(8) GPUProxy.setResolution(baseResolutionWidth, baseResolutionHeight) GPUProxy.setBackground(color.HSBToInteger(hue, 1, 1)) GPUProxy.setForeground(0x0)