diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-01-14 19:53:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-14 19:53:20 +0100 |
commit | 66c9002dab717a2fdd9f796f73c5bd48e976f64b (patch) | |
tree | c3ca7773c28d06f2a9716152a377a6c59fa1c41f /scene/gui | |
parent | ce6de717ff667feecd97c8ed2673d9f226c3c89f (diff) | |
parent | 85424afee64233ed04a7c7b737b24631eeb6f7f8 (diff) |
Merge pull request #56787 from bruvzg/fix_guidelines
Fix CodeEdit guidelines position.
Diffstat (limited to 'scene/gui')
-rw-r--r-- | scene/gui/code_edit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/code_edit.cpp b/scene/gui/code_edit.cpp index 398b909195..040075150b 100644 --- a/scene/gui/code_edit.cpp +++ b/scene/gui/code_edit.cpp @@ -92,7 +92,7 @@ void CodeEdit::_notification(int p_what) { if (line_length_guideline_columns.size() > 0) { const int xmargin_beg = style_normal->get_margin(SIDE_LEFT) + get_total_gutter_width(); const int xmargin_end = size.width - style_normal->get_margin(SIDE_RIGHT) - (is_drawing_minimap() ? get_minimap_width() : 0); - const int char_size = (int)font->get_char_size('0', 0, font_size).width; + const int char_size = Math::round(font->get_char_size('0', 0, font_size).width); for (int i = 0; i < line_length_guideline_columns.size(); i++) { const int xoffset = xmargin_beg + char_size * (int)line_length_guideline_columns[i] - get_h_scroll(); |