Merge pull request #34040 from qarmin/unused_variable_more_precise_numbers

Removed unused variables, add some constants numbers
This commit is contained in:
Rémi Verschelde
2019-12-10 08:25:31 +01:00
committed by GitHub
41 changed files with 112 additions and 91 deletions

View File

@@ -349,16 +349,15 @@ private:
void _path_selected(const String &p_path) {
String p = p_path;
String sp = p.simplify_path();
String sp = p_path.simplify_path();
project_path->set_text(sp);
_path_text_changed(sp);
get_ok()->call_deferred("grab_focus");
}
void _install_path_selected(const String &p_path) {
String p = p_path;
String sp = p.simplify_path();
String sp = p_path.simplify_path();
install_path->set_text(sp);
_path_text_changed(sp);
get_ok()->call_deferred("grab_focus");