diff options
| author | somecrepe <119122236+somecrepe@users.noreply.github.com> | 2023-07-20 17:57:09 -0700 |
|---|---|---|
| committer | somecrepe <119122236+somecrepe@users.noreply.github.com> | 2023-07-24 13:24:59 -0700 |
| commit | 97fd8cbdb3041153bf6b1b5a2ff1dd5e97c16fca (patch) | |
| tree | c0f8fb0f28f17ce601fb0c381cb11ea42d58e921 | |
| parent | f8dbed4d0aef09ae7f4e3d66213268dba23a31d6 (diff) | |
| download | redot-engine-97fd8cbdb3041153bf6b1b5a2ff1dd5e97c16fca.tar.gz | |
Change the text for the flat button preview to follow pattern
Changed text for flat button preview to follow pattern set by previous two.
| -rw-r--r-- | editor/plugins/theme_editor_preview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/theme_editor_preview.cpp b/editor/plugins/theme_editor_preview.cpp index f4a6c4af2d..fb8cb57d4d 100644 --- a/editor/plugins/theme_editor_preview.cpp +++ b/editor/plugins/theme_editor_preview.cpp @@ -321,7 +321,7 @@ DefaultThemeEditorPreview::DefaultThemeEditorPreview() { first_vb->add_child(bt); Button *tb = memnew(Button); tb->set_flat(true); - tb->set_text("Button"); + tb->set_text("Flat Button"); first_vb->add_child(tb); CheckButton *cb = memnew(CheckButton); |
