Rename "Default" window placement mode to "Top Left"

It is no longer the default value ;)
This commit is contained in:
Rémi Verschelde
2017-08-20 14:16:31 +02:00
parent 7e5890d23d
commit 686294e4f2
2 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ Error EditorRun::run(const String &p_scene, const String p_custom_args, const Li
int window_placement = EditorSettings::get_singleton()->get("run/window_placement/rect");
switch (window_placement) {
case 0: { // default
case 0: { // top left
args.push_back("-p");
args.push_back(itos(screen_rect.position.x) + "x" + itos(screen_rect.position.y));