浏览代码

CodeEdit: Fix line number margin

rune-scape 10 月之前
父节点
当前提交
5d168a3850
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      scene/gui/code_edit.cpp

+ 2 - 2
scene/gui/code_edit.cpp

@@ -1498,9 +1498,9 @@ void CodeEdit::_line_number_draw_callback(int p_line, int p_gutter, const Rect2
 	ofs.y += TS->shaped_text_get_ascent(text_rid);
 
 	if (rtl) {
-		ofs.x = p_region.position.x;
-	} else {
 		ofs.x = p_region.get_end().x - text_size.width;
+	} else {
+		ofs.x = p_region.position.x;
 	}
 
 	Color number_color = get_line_gutter_item_color(p_line, line_number_gutter);