mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 06:01:14 +00:00
Fix various typos with codespell
Found via `codespell -q 3 -S ./thirdparty,*.po,./DONORS.md -L ackward,ang,ans,ba,beng,cas,childs,childrens,dof,doubleclick,fave,findn,hist,inout,leapyear,lod,nd,numer,ois,ony,paket,seeked,sinc,switchs,te,uint`
This commit is contained in:
parent
6b11d8cc73
commit
3564c16cb8
61 changed files with 94 additions and 94 deletions
|
|
@ -754,7 +754,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);
|
||||
|
||||
|
|
@ -1503,7 +1503,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);
|
||||
|
|
@ -1518,7 +1518,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++) {
|
||||
|
|
@ -1542,7 +1542,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++) {
|
||||
|
|
@ -1566,7 +1566,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++) {
|
||||
|
|
@ -2574,7 +2574,7 @@ void ThemeTypeEditor::_add_default_type_items() {
|
|||
}
|
||||
|
||||
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();
|
||||
|
||||
{
|
||||
|
|
@ -2876,7 +2876,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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue