From 8be4368cad780ca5f37c68d46980d9c3c0f91015 Mon Sep 17 00:00:00 2001 From: remi durand Date: Fri, 11 Feb 2022 18:01:53 +0100 Subject: [PATCH] Change the SLICE tooltip to a one-liner supermerill/SuperSlicer#2352 --- src/slic3r/GUI/Plater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp index f00244f50..97940df2d 100644 --- a/src/slic3r/GUI/Plater.cpp +++ b/src/slic3r/GUI/Plater.cpp @@ -924,7 +924,7 @@ void Sidebar::update_reslice_btn_tooltip() const { wxString tooltip = wxString("Slice") + " [" + GUI::shortkey_ctrl_prefix() + "R]"; if (m_mode != comSimple || wxGetApp().app_config->get("objects_always_expert") == "1") - tooltip += wxString("\n") + _L("Hold Shift to Slice & Export G-code"); + tooltip += wxString(" - ") + _L("Hold Shift to Slice & Export G-code"); p->btn_reslice->SetToolTip(tooltip); }