Skip to content

Commit

Permalink
Merge pull request #89993 from Sauermann/fix-textedit-clip-contents
Browse files Browse the repository at this point in the history
Make `TextEdit.clip_contents` more transparent to users
  • Loading branch information
akien-mga committed Apr 4, 2024
2 parents 299d23a + 94e1943 commit 0df9c16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions doc/classes/TextEdit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1132,6 +1132,7 @@
<member name="caret_type" type="int" setter="set_caret_type" getter="get_caret_type" enum="TextEdit.CaretType" default="0">
Set the type of caret to draw.
</member>
<member name="clip_contents" type="bool" setter="set_clip_contents" getter="is_clipping_contents" overrides="Control" default="true" />
<member name="context_menu_enabled" type="bool" setter="set_context_menu_enabled" getter="is_context_menu_enabled" default="true">
If [code]true[/code], a right-click displays the context menu.
</member>
Expand Down
2 changes: 1 addition & 1 deletion scene/gui/text_edit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,6 @@ void TextEdit::_notification(int p_what) {
_update_scrollbars();

RID ci = get_canvas_item();
RenderingServer::get_singleton()->canvas_item_set_clip(get_canvas_item(), true);
int xmargin_beg = theme_cache.style_normal->get_margin(SIDE_LEFT) + gutters_width + gutter_padding;

int xmargin_end = size.width - theme_cache.style_normal->get_margin(SIDE_RIGHT);
Expand Down Expand Up @@ -8022,5 +8021,6 @@ TextEdit::TextEdit(const String &p_placeholder) {

set_placeholder(p_placeholder);

set_clip_contents(true);
set_editable(true);
}

0 comments on commit 0df9c16

Please sign in to comment.