Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/capi/window_c.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ void native_window_set_bounds(native_window_t window, native_rectangle_t bounds)
if (!window)
return;
auto* win = static_cast<nativeapi::Window*>(window);
Rectangle rect = {bounds.x, bounds.y, bounds.height, bounds.width};
Rectangle rect = {bounds.x, bounds.y, bounds.width, bounds.height};
win->SetBounds(rect);
}

Expand Down
Loading