Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,12 @@ class ELinuxWindow {

// Get current window width in physical pixels.
uint32_t GetCurrentWidth() const {
return view_properties_.width * current_scale_;
return view_properties_.width;
}

// Get current window height in physical pixels.
uint32_t GetCurrentHeight() const {
return view_properties_.height * current_scale_;
return view_properties_.height;
}

void SetRotation(FlutterDesktopViewRotation rotation) {
Expand Down
Loading