|
@@ -1375,6 +1375,7 @@ DynamicFontImportSettingsDialog::DynamicFontImportSettingsDialog() {
|
|
|
add_var->connect("pressed", callable_mp(this, &DynamicFontImportSettingsDialog::_variation_add));
|
|
|
|
|
|
vars_list = memnew(Tree);
|
|
|
+ vars_list->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED);
|
|
|
vars_list->set_custom_minimum_size(Size2(300 * EDSCALE, 0));
|
|
|
vars_list->set_hide_root(true);
|
|
|
vars_list->set_columns(2);
|
|
@@ -1427,6 +1428,7 @@ DynamicFontImportSettingsDialog::DynamicFontImportSettingsDialog() {
|
|
|
page2_0_vb->add_child(page2_0_description);
|
|
|
|
|
|
locale_tree = memnew(Tree);
|
|
|
+ locale_tree->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED);
|
|
|
locale_tree->set_columns(1);
|
|
|
locale_tree->set_hide_root(true);
|
|
|
locale_tree->set_column_expand(0, true);
|
|
@@ -1502,6 +1504,7 @@ DynamicFontImportSettingsDialog::DynamicFontImportSettingsDialog() {
|
|
|
page2_2_vb->add_child(glyphs_split);
|
|
|
|
|
|
glyph_table = memnew(Tree);
|
|
|
+ glyph_table->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED);
|
|
|
glyph_table->set_custom_minimum_size(Size2((30 * 16 + 100) * EDSCALE, 0));
|
|
|
glyph_table->set_columns(17);
|
|
|
glyph_table->set_column_expand(0, false);
|
|
@@ -1521,6 +1524,7 @@ DynamicFontImportSettingsDialog::DynamicFontImportSettingsDialog() {
|
|
|
glyph_table->connect("item_activated", callable_mp(this, &DynamicFontImportSettingsDialog::_glyph_selected));
|
|
|
|
|
|
glyph_tree = memnew(Tree);
|
|
|
+ glyph_tree->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED);
|
|
|
glyph_tree->set_custom_minimum_size(Size2(300 * EDSCALE, 0));
|
|
|
glyph_tree->set_columns(2);
|
|
|
glyph_tree->set_hide_root(true);
|