Skip to content

Commit

Permalink
Merge pull request #924 from myk002/myk_blinkyblinky
Browse files Browse the repository at this point in the history
[confirm] make intercept frames blink while debugging
  • Loading branch information
myk002 authored Jan 4, 2024
2 parents 761c3e6 + d445cde commit c223938
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions confirm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,13 @@ function ConfirmOverlay:onInput(keys)
end
end

function ConfirmOverlay:render(dc)
if gui.blink_visible(500) then
return
end
ConfirmOverlay.super.render(self, dc)
end

OVERLAY_WIDGETS = {
overlay=ConfirmOverlay,
}
Expand Down

0 comments on commit c223938

Please sign in to comment.