From 1dfb80ea0fb29c1f0af6eab9293a5acf2a31c996 Mon Sep 17 00:00:00 2001 From: CoolCat467 <52022020+CoolCat467@users.noreply.github.com> Date: Thu, 11 Mar 2021 12:12:28 -0600 Subject: [PATCH] Add coment about design choices --- Applications/3D Print.app/Main.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Applications/3D Print.app/Main.lua b/Applications/3D Print.app/Main.lua index dbedbbfe..dff61b2a 100644 --- a/Applications/3D Print.app/Main.lua +++ b/Applications/3D Print.app/Main.lua @@ -309,6 +309,8 @@ local function updateProxies() --Update shape limit if we have a printer connected. --Probably halfway laggy because it's updating colors now too though, --but necessary if we want things to work right with no unintended consequences. + --I would have this update in the component add remove part, but updateProxy is + --awesome and tells us if a component is present or not. if hasPrinter then local printer3d = component.get("printer3d") updateShapeLimit(printer3d.getMaxShapeCount())