mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-09 07:56:24 -06:00
ENH: gizmo: use native string for snapshot name
to avoid possible crash issue(not sure) Change-Id: I34f7859b5eb8d2b9b09093ac9b68d24fa1074612
This commit is contained in:
parent
ceae5fb0ed
commit
fb4f30a4a4
5 changed files with 13 additions and 13 deletions
|
@ -100,9 +100,9 @@ protected:
|
|||
|
||||
wxString handle_snapshot_action_name(bool shift_down, Button button_down) const override;
|
||||
|
||||
std::string get_gizmo_entering_text() const override { return _u8L("Entering color painting"); }
|
||||
std::string get_gizmo_leaving_text() const override { return _u8L("Leaving color painting"); }
|
||||
std::string get_action_snapshot_name() override { return _u8L("Color painting editing"); }
|
||||
std::string get_gizmo_entering_text() const override { return "Entering color painting"; }
|
||||
std::string get_gizmo_leaving_text() const override { return "Leaving color painting"; }
|
||||
std::string get_action_snapshot_name() override { return "Color painting editing"; }
|
||||
|
||||
// BBS
|
||||
size_t m_selected_extruder_idx = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue