You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sub isScreenInStack(screenType as String)
for each screen in SgNode.getAllChildren(m.screensNode)
if lCase(screen.subType()) = `${lCase(screenType)}screen` then return true
end for
return false
end sub
And this is the resulting format after formatting:
sub isScreenInStack(screenType as String)
for each screen in SgNode.getAllChildren(m.screensNode)
if lCase(screen.subType()) = `${lCase(screenType)}screen` then return true
end for
return false
end sub
If I change this to multi line like so then everything is fine again:
sub isScreenInStack(screenType as String)
for each screen in SgNode.getAllChildren(m.screensNode)
if lCase(screen.subType()) = `${lCase(screenType)}screen` then
return true
end if
end for
return false
end sub
The text was updated successfully, but these errors were encountered:
Here is an example of the code I had:
And this is the resulting format after formatting:
If I change this to multi line like so then everything is fine again:
The text was updated successfully, but these errors were encountered: