Renamed 'MMU segmentation; to 'Multimaterial painting'
This commit is contained in:
parent
1eebaa4576
commit
a5ebd45d4d
4 changed files with 5 additions and 4 deletions
|
@ -42,7 +42,7 @@ void GLGizmoMmuSegmentation::on_shutdown()
|
||||||
std::string GLGizmoMmuSegmentation::on_get_name() const
|
std::string GLGizmoMmuSegmentation::on_get_name() const
|
||||||
{
|
{
|
||||||
// FIXME Lukas H.: Discuss and change shortcut
|
// FIXME Lukas H.: Discuss and change shortcut
|
||||||
return (_L("MMU painting") + " [N]").ToUTF8().data();
|
return (_L("Multimaterial painting") + " [N]").ToUTF8().data();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool GLGizmoMmuSegmentation::on_is_selectable() const
|
bool GLGizmoMmuSegmentation::on_is_selectable() const
|
||||||
|
|
|
@ -1363,7 +1363,7 @@ void NotificationManager::push_updated_item_info_notification(InfoItemType type)
|
||||||
switch (type) {
|
switch (type) {
|
||||||
case InfoItemType::CustomSupports: text += _utf8("custom supports."); break;
|
case InfoItemType::CustomSupports: text += _utf8("custom supports."); break;
|
||||||
case InfoItemType::CustomSeam: text += _utf8("custom seam."); break;
|
case InfoItemType::CustomSeam: text += _utf8("custom seam."); break;
|
||||||
case InfoItemType::MmuSegmentation: text += _utf8("MMU segmentation."); break;
|
case InfoItemType::MmuSegmentation: text += _utf8("multimaterial painting."); break;
|
||||||
case InfoItemType::VariableLayerHeight: text += _utf8("variable layer height."); break;
|
case InfoItemType::VariableLayerHeight: text += _utf8("variable layer height."); break;
|
||||||
case InfoItemType::Sinking: text = _utf8("Partially sinking object(s) were loaded."); break;
|
case InfoItemType::Sinking: text = _utf8("Partially sinking object(s) were loaded."); break;
|
||||||
default: text.clear(); break;
|
default: text.clear(); break;
|
||||||
|
|
|
@ -64,7 +64,7 @@ ObjectDataViewModelNode::ObjectDataViewModelNode(ObjectDataViewModelNode* parent
|
||||||
{
|
{
|
||||||
m_name = info_type == InfoItemType::CustomSupports ? _L("Paint-on supports") :
|
m_name = info_type == InfoItemType::CustomSupports ? _L("Paint-on supports") :
|
||||||
info_type == InfoItemType::CustomSeam ? _L("Paint-on seam") :
|
info_type == InfoItemType::CustomSeam ? _L("Paint-on seam") :
|
||||||
info_type == InfoItemType::MmuSegmentation ? _L("Paint-on segmentation") :
|
info_type == InfoItemType::MmuSegmentation ? _L("Multimaterial painting") :
|
||||||
info_type == InfoItemType::Sinking ? _L("Sinking") :
|
info_type == InfoItemType::Sinking ? _L("Sinking") :
|
||||||
_L("Variable layer height");
|
_L("Variable layer height");
|
||||||
m_info_item_type = info_type;
|
m_info_item_type = info_type;
|
||||||
|
|
|
@ -6134,7 +6134,8 @@ void Plater::clear_before_change_mesh(int obj_idx)
|
||||||
get_notification_manager()->push_notification(
|
get_notification_manager()->push_notification(
|
||||||
NotificationType::CustomSupportsAndSeamRemovedAfterRepair,
|
NotificationType::CustomSupportsAndSeamRemovedAfterRepair,
|
||||||
NotificationManager::NotificationLevel::RegularNotification,
|
NotificationManager::NotificationLevel::RegularNotification,
|
||||||
_u8L("Custom supports and seams were removed after repairing the mesh."));
|
_u8L("Custom supports, seams and multimaterial painting were "
|
||||||
|
"removed after repairing the mesh."));
|
||||||
// _u8L("Undo the repair"),
|
// _u8L("Undo the repair"),
|
||||||
// [this, snapshot_time](wxEvtHandler*){
|
// [this, snapshot_time](wxEvtHandler*){
|
||||||
// // Make sure the snapshot is still available and that
|
// // Make sure the snapshot is still available and that
|
||||||
|
|
Loading…
Reference in a new issue