Skip to content

Commit 99246f6

Browse files
Fix Resize
1 parent 25f85e2 commit 99246f6

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

lib/bindings/window/window.go

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -315,10 +315,8 @@ func (w *Window) Resize(width, height uint) {
315315
command := Command{
316316
Method: "resize",
317317
Args: CommandArguments{
318-
Size: SizeHW{
319-
Width: width,
320-
Height: height,
321-
},
318+
Width: width,
319+
Height: height,
322320
},
323321
}
324322

0 commit comments

Comments
 (0)