Merge pull request #7068 from volzhs/fix-project-name
Set project name as directory name instead of '.'
This commit is contained in:
commit
734e04a0dd
@ -141,7 +141,7 @@ private:
|
|||||||
}
|
}
|
||||||
String sp = p.simplify_path();
|
String sp = p.simplify_path();
|
||||||
project_path->set_text(sp);
|
project_path->set_text(sp);
|
||||||
_path_text_changed(p);
|
_path_text_changed(sp);
|
||||||
get_ok()->call_deferred("grab_focus");
|
get_ok()->call_deferred("grab_focus");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -150,7 +150,7 @@ private:
|
|||||||
String p = p_path;
|
String p = p_path;
|
||||||
String sp = p.simplify_path();
|
String sp = p.simplify_path();
|
||||||
project_path->set_text(sp);
|
project_path->set_text(sp);
|
||||||
_path_text_changed(p);
|
_path_text_changed(sp);
|
||||||
get_ok()->call_deferred("grab_focus");
|
get_ok()->call_deferred("grab_focus");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user