1
0
mirror of https://github.com/LDDestroier/CC/ synced 2025-09-08 13:56:05 +00:00

Disabled setVisible during render if not focused in multishell

This commit is contained in:
LDDestroier
2020-01-12 23:52:52 -05:00
committed by GitHub
parent ec3ae28af9
commit 20437ea4f6

View File

@@ -215,7 +215,11 @@ windont.render = function(onlyX1, onlyX2, onlyY, ...)
end end
end end
if windont.useSetVisible and bT.setVisible then if windont.useSetVisible and bT.setVisible then
bT.setVisible(true) if not multishell then
bT.setVisible(true)
elseif multishell.getFocus() == multishell.getCurrent() then
bT.setVisible(true)
end
end end
end end