浏览代码

Fixed compilation with tools=no

Daniel J. Ramirez 8 年之前
父节点
当前提交
d84c79d349
共有 1 个文件被更改,包括 8 次插入1 次删除
  1. 8 1
      scene/gui/text_edit.cpp

+ 8 - 1
scene/gui/text_edit.cpp

@@ -29,7 +29,6 @@
 /*************************************************************************/
 #include "text_edit.h"
 
-#include "editor/editor_scale.h"
 #include "message_queue.h"
 #include "os/input.h"
 #include "os/keyboard.h"
@@ -37,6 +36,10 @@
 #include "project_settings.h"
 #include "scene/main/viewport.h"
 
+#ifdef TOOLS_ENABLED
+#include "editor/editor_scale.h"
+#endif
+
 #define TAB_PIXELS
 
 static bool _is_text_char(CharType c) {
@@ -735,7 +738,11 @@ void TextEdit::_notification(int p_what) {
 				}
 
 				if (text.is_breakpoint(line) && !draw_breakpoint_gutter) {
+#ifdef TOOLS_ENABLED
 					VisualServer::get_singleton()->canvas_item_add_rect(ci, Rect2(xmargin_beg, ofs_y + get_row_height() - EDSCALE, xmargin_end - xmargin_beg, EDSCALE), cache.breakpoint_color);
+#else
+					VisualServer::get_singleton()->canvas_item_add_rect(ci, Rect2(xmargin_beg, ofs_y, xmargin_end - xmargin_beg, get_row_height()), cache.breakpoint_color);
+#endif
 				}
 
 				// draw breakpoint marker