Fixed some metrics (some issues caused by the new Noto Sans font).
plus other minor fixes
This commit is contained in:
parent
ce28452109
commit
e298f931a6
@ -72,11 +72,14 @@ static Ref<BitmapFont> make_font(int p_height, int p_ascent, int p_valign, int p
|
||||
m_name->add_fallback(FontJapanese); \
|
||||
m_name->add_fallback(FontFallback);
|
||||
|
||||
#define MAKE_DEFAULT_FONT(m_name, m_size) \
|
||||
Ref<DynamicFont> m_name; \
|
||||
m_name.instance(); \
|
||||
m_name->set_size(m_size); \
|
||||
m_name->set_font_data(DefaultFont); \
|
||||
// the custom spacings might only work with Noto Sans
|
||||
#define MAKE_DEFAULT_FONT(m_name, m_size) \
|
||||
Ref<DynamicFont> m_name; \
|
||||
m_name.instance(); \
|
||||
m_name->set_size(m_size); \
|
||||
m_name->set_font_data(DefaultFont); \
|
||||
m_name->set_spacing(DynamicFont::SPACING_TOP, -1); \
|
||||
m_name->set_spacing(DynamicFont::SPACING_BOTTOM, -1); \
|
||||
MAKE_FALLBACKS(m_name);
|
||||
|
||||
void editor_register_fonts(Ref<Theme> p_theme) {
|
||||
|
@ -333,10 +333,10 @@ Ref<Theme> create_editor_theme(const Ref<Theme> p_theme) {
|
||||
theme->set_stylebox("MenuHover", "EditorStyles", style_menu_hover_border);
|
||||
|
||||
// Content of each tab
|
||||
Ref<StyleBoxFlat> style_content_panel = make_flat_stylebox(base_color, 4, 5, 4, 4);
|
||||
Ref<StyleBoxFlat> style_content_panel = make_flat_stylebox(base_color, 4, 4, 4, 4);
|
||||
style_content_panel->set_border_color_all(base_color);
|
||||
style_content_panel->set_border_width_all(border_width);
|
||||
Ref<StyleBoxFlat> style_content_panel_vp = make_flat_stylebox(base_color, border_width, 5, border_width, border_width);
|
||||
Ref<StyleBoxFlat> style_content_panel_vp = make_flat_stylebox(base_color, border_width, 4, border_width, border_width);
|
||||
style_content_panel_vp->set_border_color_all(base_color);
|
||||
style_content_panel_vp->set_border_width_all(border_width);
|
||||
theme->set_stylebox("panel", "TabContainer", style_content_panel);
|
||||
|
@ -1839,7 +1839,7 @@ FileSystemDock::FileSystemDock(EditorNode *p_editor) {
|
||||
|
||||
path = "res://";
|
||||
|
||||
add_constant_override("separation", 3);
|
||||
add_constant_override("separation", 4);
|
||||
}
|
||||
|
||||
FileSystemDock::~FileSystemDock() {
|
||||
|
@ -631,7 +631,7 @@ void LineEdit::_notification(int p_what) {
|
||||
if (has_icon("right_icon")) {
|
||||
Ref<Texture> r_icon = Control::get_icon("right_icon");
|
||||
ofs_max -= r_icon->get_width();
|
||||
r_icon->draw(ci, Point2(width - r_icon->get_width() - x_ofs, y_ofs), Color(1, 1, 1, disabled_alpha * .9));
|
||||
r_icon->draw(ci, Point2(width - r_icon->get_width() - x_ofs, height / 2 - r_icon->get_height() / 2), Color(1, 1, 1, disabled_alpha * .9));
|
||||
}
|
||||
|
||||
int caret_height = font->get_height() > y_area ? y_area : font->get_height();
|
||||
|
Loading…
Reference in New Issue
Block a user