Added tooltip [Ctrl - R] to the Slice now button
This commit is contained in:
parent
82321c7aee
commit
0a3500b5ab
1 changed files with 3 additions and 1 deletions
|
@ -853,7 +853,9 @@ void Sidebar::update_mode_sizer() const
|
|||
|
||||
void Sidebar::update_reslice_btn_tooltip() const
|
||||
{
|
||||
const wxString tooltip = m_mode == comSimple ? wxString("") : _(L("Hold Shift to Slice & Export G-code"));
|
||||
wxString tooltip = wxString("Slice") + " [" + GUI::shortkey_ctrl_prefix() + "R]";
|
||||
if (m_mode != comSimple)
|
||||
tooltip += wxString("\n") + _(L("Hold Shift to Slice & Export G-code"));
|
||||
p->btn_reslice->SetToolTip(tooltip);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue