Fix problems with displaying help
This commit is contained in:
parent
60511c1cc4
commit
6a777089ff
1 changed files with 5 additions and 1 deletions
|
@ -226,6 +226,8 @@ Sprite Details:
|
|||
[8] Enable / Disable stage tile rulers
|
||||
[9] Enable / Disable hidden tiles
|
||||
]])
|
||||
overlay = overlayCtx:render()
|
||||
gui.renderctx.setnull()
|
||||
return
|
||||
end
|
||||
|
||||
|
@ -413,7 +415,9 @@ function on_paint (not_synth)
|
|||
renderOverlay(guiWidth, guiHeight)
|
||||
end
|
||||
|
||||
overlay:draw(0, 0)
|
||||
if overlay ~= nil then
|
||||
overlay:draw(0, 0)
|
||||
end
|
||||
end
|
||||
|
||||
function on_timer()
|
||||
|
|
Loading…
Add table
Reference in a new issue