Skip to content

Commit

Permalink
Revert "Fix a win standalone HDPI resize bug (free-audio#345)" (free-…
Browse files Browse the repository at this point in the history
…audio#347)

This commit put the scale in the wrong place
  • Loading branch information
baconpaul committed Feb 22, 2025
1 parent 39034af commit 418beaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/detail/standalone/windows/windows_standalone.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1104,7 +1104,7 @@ Plugin::Plugin(const clap_plugin_entry* entry, int argc, char** argv)
{
if (placement.showCmd != SW_MAXIMIZE)
{
adjustSize(scale * width, scale * height);
adjustSize(width, height);
}

return true;
Expand Down

0 comments on commit 418beaa

Please sign in to comment.