浏览代码

Merge pull request #34536 from timothyqiu/line-edit-icon

Set proper icon for LineEdit in editor theme
Rémi Verschelde 5 年之前
父节点
当前提交
2f2724a40f
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      editor/editor_themes.cpp

+ 1 - 0
editor/editor_themes.cpp

@@ -861,6 +861,7 @@ Ref<Theme> create_editor_theme(const Ref<Theme> p_theme) {
 	theme->set_stylebox("normal", "LineEdit", style_widget);
 	theme->set_stylebox("focus", "LineEdit", style_widget_focus);
 	theme->set_stylebox("read_only", "LineEdit", style_widget_disabled);
+	theme->set_icon("clear", "LineEdit", theme->get_icon("GuiClose", "EditorIcons"));
 	theme->set_color("read_only", "LineEdit", font_color_disabled);
 	theme->set_color("font_color", "LineEdit", font_color);
 	theme->set_color("font_color_selected", "LineEdit", mono_color);