From 859478251f61e15c7fff4fd02ec557e281fcbb3b Mon Sep 17 00:00:00 2001 From: Hugo Locurcio Date: Sat, 12 Oct 2019 15:54:16 +0200 Subject: [PATCH] Fix the dependency error dialog being too small on hiDPI displays This closes #32770. --- editor/dependency_editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/dependency_editor.cpp b/editor/dependency_editor.cpp index 5f8660e1085..1f58eda3960 100644 --- a/editor/dependency_editor.cpp +++ b/editor/dependency_editor.cpp @@ -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"));