mirror of
https://github.com/LDDestroier/CC/
synced 2024-11-08 19:09:58 +00:00
Disabled setVisible during render if not focused in multishell
This commit is contained in:
parent
ec3ae28af9
commit
20437ea4f6
@ -215,7 +215,11 @@ windont.render = function(onlyX1, onlyX2, onlyY, ...)
|
||||
end
|
||||
end
|
||||
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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user