Skip to content

Commit

Permalink
Fix run instances dialog scaling bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Nova840 authored and akien-mga committed Dec 2, 2024
1 parent 0f20e67 commit 4e08e57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/run_instances_dialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ Vector<String> RunInstancesDialog::_split_cmdline_args(const String &p_arg_strin
}

void RunInstancesDialog::popup_dialog() {
popup_centered(Vector2i(1200, 600) * EDSCALE);
popup_centered(Vector2(1200, 600) * EDSCALE);
}

int RunInstancesDialog::get_instance_count() const {
Expand Down

0 comments on commit 4e08e57

Please sign in to comment.