You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Merge pull request #107517 from kitbdev/fix-test-warning-linebreak-setting
Fix tests warning line break strictness project setting
This commit is contained in:
@@ -2637,9 +2637,6 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
GLOBAL_DEF_BASIC("internationalization/locale/include_text_server_data", false);
|
|
||||||
GLOBAL_DEF_BASIC(PropertyInfo(Variant::INT, "internationalization/locale/line_breaking_strictness", PROPERTY_HINT_ENUM, "Auto,Loose,Normal,Strict"), 0);
|
|
||||||
|
|
||||||
OS::get_singleton()->_allow_hidpi = GLOBAL_DEF("display/window/dpi/allow_hidpi", true);
|
OS::get_singleton()->_allow_hidpi = GLOBAL_DEF("display/window/dpi/allow_hidpi", true);
|
||||||
OS::get_singleton()->_allow_layered = GLOBAL_DEF_RST("display/window/per_pixel_transparency/allowed", false);
|
OS::get_singleton()->_allow_layered = GLOBAL_DEF_RST("display/window/per_pixel_transparency/allowed", false);
|
||||||
|
|
||||||
|
|||||||
@@ -2357,6 +2357,8 @@ TextServer::TextServer() {
|
|||||||
GLOBAL_DEF_RST("gui/theme/default_font_generate_mipmaps", false);
|
GLOBAL_DEF_RST("gui/theme/default_font_generate_mipmaps", false);
|
||||||
|
|
||||||
GLOBAL_DEF(PropertyInfo(Variant::INT, "gui/theme/lcd_subpixel_layout", PROPERTY_HINT_ENUM, "Disabled,Horizontal RGB,Horizontal BGR,Vertical RGB,Vertical BGR"), 1);
|
GLOBAL_DEF(PropertyInfo(Variant::INT, "gui/theme/lcd_subpixel_layout", PROPERTY_HINT_ENUM, "Disabled,Horizontal RGB,Horizontal BGR,Vertical RGB,Vertical BGR"), 1);
|
||||||
|
GLOBAL_DEF_BASIC("internationalization/locale/include_text_server_data", false);
|
||||||
|
GLOBAL_DEF_BASIC(PropertyInfo(Variant::INT, "internationalization/locale/line_breaking_strictness", PROPERTY_HINT_ENUM, "Auto,Loose,Normal,Strict"), 0);
|
||||||
|
|
||||||
_init_diacritics_map();
|
_init_diacritics_map();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user