From 28a01e7c5e170aa50dcb01d420495d8ff9ddd5a7 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Sun, 2 Jun 2013 16:58:23 +0200 Subject: [PATCH] Fix past participle --- lib/Slic3r/GUI/Plater.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Slic3r/GUI/Plater.pm b/lib/Slic3r/GUI/Plater.pm index 0213f6c45..0dbca23b0 100644 --- a/lib/Slic3r/GUI/Plater.pm +++ b/lib/Slic3r/GUI/Plater.pm @@ -476,7 +476,7 @@ sub split_object { my $model_object = $current_object->get_model_object; if (@{$model_object->volumes} > 1) { - Slic3r::GUI::warning_catcher($self)->("The selected object couldn't be splitted because it contains more than one volume/material."); + Slic3r::GUI::warning_catcher($self)->("The selected object couldn't be split because it contains more than one volume/material."); return; } @@ -485,7 +485,7 @@ sub split_object { my @new_meshes = $mesh->split_mesh; if (@new_meshes == 1) { - Slic3r::GUI::warning_catcher($self)->("The selected object couldn't be splitted because it already contains a single part."); + Slic3r::GUI::warning_catcher($self)->("The selected object couldn't be split because it already contains a single part."); return; }