You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-17 14:11:06 +00:00
Fix typos with codespell
Using codespell 2.1.0. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang curvelinear dof doubleclick fave findn GIRD leapyear lod merchantibility nd numer ois ony que readded seeked statics synching te uint unselect webp EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ```
This commit is contained in:
@@ -714,7 +714,7 @@ void ThemeItemImportTree::_import_selected() {
|
||||
return;
|
||||
}
|
||||
|
||||
// Prevent changes from immediatelly being reported while the operation is still ongoing.
|
||||
// Prevent changes from immediately being reported while the operation is still ongoing.
|
||||
edited_theme->_freeze_change_propagation();
|
||||
ProgressDialog::get_singleton()->add_task("import_theme_items", TTR("Importing Theme Items"), selected_items.size() + 2);
|
||||
|
||||
@@ -1444,7 +1444,7 @@ void ThemeItemEditorDialog::_add_theme_item(Theme::DataType p_data_type, String
|
||||
void ThemeItemEditorDialog::_remove_data_type_items(Theme::DataType p_data_type, String p_item_type) {
|
||||
List<StringName> names;
|
||||
|
||||
// Prevent changes from immediatelly being reported while the operation is still ongoing.
|
||||
// Prevent changes from immediately being reported while the operation is still ongoing.
|
||||
edited_theme->_freeze_change_propagation();
|
||||
|
||||
edited_theme->get_theme_item_list(p_data_type, p_item_type, &names);
|
||||
@@ -1459,7 +1459,7 @@ void ThemeItemEditorDialog::_remove_data_type_items(Theme::DataType p_data_type,
|
||||
void ThemeItemEditorDialog::_remove_class_items() {
|
||||
List<StringName> names;
|
||||
|
||||
// Prevent changes from immediatelly being reported while the operation is still ongoing.
|
||||
// Prevent changes from immediately being reported while the operation is still ongoing.
|
||||
edited_theme->_freeze_change_propagation();
|
||||
|
||||
for (int dt = 0; dt < Theme::DATA_TYPE_MAX; dt++) {
|
||||
@@ -1483,7 +1483,7 @@ void ThemeItemEditorDialog::_remove_class_items() {
|
||||
void ThemeItemEditorDialog::_remove_custom_items() {
|
||||
List<StringName> names;
|
||||
|
||||
// Prevent changes from immediatelly being reported while the operation is still ongoing.
|
||||
// Prevent changes from immediately being reported while the operation is still ongoing.
|
||||
edited_theme->_freeze_change_propagation();
|
||||
|
||||
for (int dt = 0; dt < Theme::DATA_TYPE_MAX; dt++) {
|
||||
@@ -1507,7 +1507,7 @@ void ThemeItemEditorDialog::_remove_custom_items() {
|
||||
void ThemeItemEditorDialog::_remove_all_items() {
|
||||
List<StringName> names;
|
||||
|
||||
// Prevent changes from immediatelly being reported while the operation is still ongoing.
|
||||
// Prevent changes from immediately being reported while the operation is still ongoing.
|
||||
edited_theme->_freeze_change_propagation();
|
||||
|
||||
for (int dt = 0; dt < Theme::DATA_TYPE_MAX; dt++) {
|
||||
@@ -2498,7 +2498,7 @@ void ThemeTypeEditor::_add_default_type_items() {
|
||||
List<StringName> names;
|
||||
|
||||
updating = true;
|
||||
// Prevent changes from immediatelly being reported while the operation is still ongoing.
|
||||
// Prevent changes from immediately being reported while the operation is still ongoing.
|
||||
edited_theme->_freeze_change_propagation();
|
||||
|
||||
{
|
||||
@@ -2775,7 +2775,7 @@ void ThemeTypeEditor::_update_stylebox_from_leading() {
|
||||
return;
|
||||
}
|
||||
|
||||
// Prevent changes from immediatelly being reported while the operation is still ongoing.
|
||||
// Prevent changes from immediately being reported while the operation is still ongoing.
|
||||
edited_theme->_freeze_change_propagation();
|
||||
|
||||
List<StringName> names;
|
||||
|
||||
Reference in New Issue
Block a user