Skip to content

Commit

Permalink
Update monarch.lua
Browse files Browse the repository at this point in the history
  • Loading branch information
britzl committed Dec 27, 2023
1 parent 43e847d commit b01f5d2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion monarch/monarch.lua
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,9 @@ local function load(screen)
if screen.transition_id then
screen.transition_url = screen.factory_ids[screen.transition_id]
end
screen.focus_url = screen.factory_ids[screen.focus_id]
if screen.focus_id then
screen.focus_url = screen.factory_ids[screen.focus_id]
end
end
screen.loaded = true
screen.preloaded = false
Expand Down

0 comments on commit b01f5d2

Please sign in to comment.