|
@@ -58,14 +58,14 @@ namespace Compdfkit_Tools.Measure
|
|
|
{
|
|
|
if (string.IsNullOrEmpty(RulerBaseText.Text) || string.IsNullOrEmpty(RulerTranslateText.Text))
|
|
|
{
|
|
|
- MessageBox.Show("Scale is not greate zero");
|
|
|
+ MessageBox.Show("Scale is not greater than zero");
|
|
|
return;
|
|
|
}
|
|
|
if (double.TryParse(RulerBaseText.Text, out double ruleBase))
|
|
|
{
|
|
|
if (ruleBase <= 0)
|
|
|
{
|
|
|
- MessageBox.Show("Scale is not greate zero");
|
|
|
+ MessageBox.Show("Scale is not greater than zero");
|
|
|
return;
|
|
|
}
|
|
|
}
|
|
@@ -74,7 +74,7 @@ namespace Compdfkit_Tools.Measure
|
|
|
{
|
|
|
if (ruletranBase <= 0)
|
|
|
{
|
|
|
- MessageBox.Show("Scale is not greate zero");
|
|
|
+ MessageBox.Show("Scale is not greater than zero");
|
|
|
return;
|
|
|
}
|
|
|
}
|