Skip to content

Commit

Permalink
Add comment about set_size being a no-op
Browse files Browse the repository at this point in the history
  • Loading branch information
noahgibbs committed Jun 25, 2024
1 parent b48b2c2 commit dd5db61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/space_shoes/guest/web_wrangler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def run
hint = @resizable ? 0 : 3

@wasm.set_title(@title)
@wasm.set_size(@width, @height, hint)
@wasm.set_size(@width, @height, hint) # Currently a no-op
@wasm.navigate("data:text/html, #{empty}")

@is_running = true
Expand Down

0 comments on commit dd5db61

Please sign in to comment.