From 711f602f869495af2c40b944a1b1be070deff79c Mon Sep 17 00:00:00 2001 From: Igor Timofeev Date: Fri, 28 Aug 2015 02:37:44 +0300 Subject: [PATCH] Update OS.lua --- MineOS/OS.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MineOS/OS.lua b/MineOS/OS.lua index 310baedc..82550136 100644 --- a/MineOS/OS.lua +++ b/MineOS/OS.lua @@ -682,6 +682,7 @@ local function enterSystem() safeLogin() elseif fs.exists("System/OS/Users.cfg") then safeBiometry() + drawAll() end end @@ -700,7 +701,7 @@ end newObj("Zones", "Desktop", 1, 2, xSize, ySize - heightOfDock - 3) newObj("Zones", "Dock", 1, ySize - heightOfDock - 1, xSize, ySize) -if not launchConfigurator() then enterSystem(); drawAll() end +if not launchConfigurator() then enterSystem() end ------------------------------------------------------------------------------------------------------------------------