Skip to content

Commit

Permalink
Revert "Fix a win standalone HDPI resize bug (#345)" (#347)
Browse files Browse the repository at this point in the history
This commit put the scale in the wrong place
  • Loading branch information
baconpaul authored Jan 22, 2025
1 parent f019f0f commit eb2e9cc
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 eb2e9cc

Please sign in to comment.