From b77e96acdd5ba8adec3d61d187ccfe7d5776e79f Mon Sep 17 00:00:00 2001 From: "yifan.wu" Date: Sat, 10 Dec 2022 15:48:02 +0800 Subject: [PATCH] ENH: refine bed type text Signed-off-by: yifan.wu Change-Id: Ia4958f316e84c7afa0d8d3af9a2f4a20e2ca8ce8 --- src/slic3r/GUI/SetBedTypeDialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/SetBedTypeDialog.cpp b/src/slic3r/GUI/SetBedTypeDialog.cpp index 02a16fbb5..68caeba0b 100644 --- a/src/slic3r/GUI/SetBedTypeDialog.cpp +++ b/src/slic3r/GUI/SetBedTypeDialog.cpp @@ -20,7 +20,7 @@ SetBedTypeDialog::SetBedTypeDialog(wxWindow* parent, wxWindowID id, const wxStri wxBoxSizer* m_sizer_radiobutton = new wxBoxSizer(wxVERTICAL); - m_rb_default_plate = create_item_radiobox(_L("Same as global bed type"), this, wxEmptyString, FromDIP(5), btDefault); + m_rb_default_plate = create_item_radiobox(_L("Same as Global Bed Type"), this, wxEmptyString, FromDIP(5), btDefault); m_sizer_radiobutton->Add(m_rb_default_plate->GetParent(), 1, wxALL, FromDIP(5)); m_rb_cool_plate = create_item_radiobox(_L("Cool Plate"), this, wxEmptyString, FromDIP(5), btPC); m_sizer_radiobutton->Add(m_rb_cool_plate->GetParent(), 1, wxALL, FromDIP(5));