Unverified Commit 18d378e3 by Rémi Verschelde Committed by GitHub

Merge pull request #32773 from Calinou/fix-dependency-error-dialog-hidpi

Fix the dependency error dialog being too small on hiDPI displays
parents 26bbb267 85947825
......@@ -646,7 +646,7 @@ DependencyErrorDialog::DependencyErrorDialog() {
vb->add_margin_child(TTR("Load failed due to missing dependencies:"), files, true);
files->set_v_size_flags(SIZE_EXPAND_FILL);
set_custom_minimum_size(Size2(500, 220));
set_custom_minimum_size(Size2(500, 220) * EDSCALE);
get_ok()->set_text(TTR("Open Anyway"));
get_cancel()->set_text(TTR("Close"));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment