Skip to content

Commit

Permalink
setSize bug
Browse files Browse the repository at this point in the history
  • Loading branch information
KingBes committed Aug 27, 2024
1 parent 8b04587 commit c6117fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Webui.php
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ public function setHide(int $window, bool $status): void
*/
public function setSize(int $window, int $width, int $height): void
{
self::$ffi->webui_set_size($width, $width, $height);
self::$ffi->webui_set_size($window, $width, $height);
}

/**
Expand Down

0 comments on commit c6117fe

Please sign in to comment.