From 97fd8cbdb3041153bf6b1b5a2ff1dd5e97c16fca Mon Sep 17 00:00:00 2001 From: somecrepe <119122236+somecrepe@users.noreply.github.com> Date: Thu, 20 Jul 2023 17:57:09 -0700 Subject: [PATCH] Change the text for the flat button preview to follow pattern Changed text for flat button preview to follow pattern set by previous two. --- editor/plugins/theme_editor_preview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/plugins/theme_editor_preview.cpp b/editor/plugins/theme_editor_preview.cpp index f4a6c4af2d3..fb8cb57d4d8 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);