diff --git a/src/js/tools/blur.js b/src/js/tools/blur.js index 67dbda1..ab17bfb 100644 --- a/src/js/tools/blur.js +++ b/src/js/tools/blur.js @@ -46,7 +46,7 @@ class Blur_class extends Base_tools_class { return; } if (config.layer.rotate || 0 > 0) { - alertify.error('Erase on rotate object is disabled. Sorry.'); + alertify.error('Erase on rotate object is disabled. Please rasterize first.'); return; } this.started = true; diff --git a/src/js/tools/clone.js b/src/js/tools/clone.js index 520cab9..74694fe 100644 --- a/src/js/tools/clone.js +++ b/src/js/tools/clone.js @@ -127,7 +127,7 @@ class Clone_class extends Base_tools_class { return; } if (config.layer.rotate || 0 > 0) { - alertify.error('Erase on rotate object is disabled. Sorry.'); + alertify.error('Erase on rotate object is disabled. Please rasterize first.'); return; } if (e.which == 3 && mouse.valid == true) { @@ -156,7 +156,7 @@ class Clone_class extends Base_tools_class { return; } if (config.layer.rotate || 0 > 0) { - alertify.error('Erase on rotate object is disabled. Sorry.'); + alertify.error('Erase on rotate object is disabled. Please rasterize first.'); return; } @@ -189,7 +189,7 @@ class Clone_class extends Base_tools_class { return; } if (config.layer.rotate || 0 > 0) { - alertify.error('Erase on rotate object is disabled. Sorry.'); + alertify.error('Erase on rotate object is disabled. Please rasterize first.'); return; } if (this.clone_coords === null) { @@ -197,13 +197,13 @@ class Clone_class extends Base_tools_class { return; } if (layer.width != layer.width_original || layer.height != layer.height_original) { - alertify.error('Clone tool disabled for resized image. Sorry.'); + alertify.error('Clone tool disabled for resized image. Please rasterize first.'); return; } if (params.source_layer.value == 'Previous' && (previous_layer.width != previous_layer.width_original || previous_layer.height != previous_layer.height_original)) { - alertify.error('Clone tool disabled for resized image. Sorry.'); + alertify.error('Clone tool disabled for resized image. Please rasterize first.'); return; } if (params.source_layer.value == 'Previous') { diff --git a/src/js/tools/desaturate.js b/src/js/tools/desaturate.js index 01378d5..0d06d08 100644 --- a/src/js/tools/desaturate.js +++ b/src/js/tools/desaturate.js @@ -46,7 +46,7 @@ class Desaturate_class extends Base_tools_class { return; } if (config.layer.rotate || 0 > 0) { - alertify.error('Erase on rotate object is disabled. Sorry.'); + alertify.error('Erase on rotate object is disabled. Please rasterize first.'); return; } this.started = true; diff --git a/src/js/tools/erase.js b/src/js/tools/erase.js index 18b562b..6a239e3 100644 --- a/src/js/tools/erase.js +++ b/src/js/tools/erase.js @@ -64,7 +64,7 @@ class Erase_class extends Base_tools_class { return; } if (config.layer.rotate || 0 > 0) { - alertify.error('Erase on rotate object is disabled. Sorry.'); + alertify.error('Erase on rotate object is disabled. Please rasterize first.'); return; } this.started = true; diff --git a/src/js/tools/fill.js b/src/js/tools/fill.js index f9198fa..d2bdc4a 100644 --- a/src/js/tools/fill.js +++ b/src/js/tools/fill.js @@ -43,7 +43,7 @@ class Fill_class extends Base_tools_class { return; } if (config.layer.rotate || 0 > 0) { - alertify.error('Erase on rotate object is disabled. Sorry.'); + alertify.error('Erase on rotate object is disabled. Please rasterize first.'); return; } diff --git a/src/js/tools/magic_erase.js b/src/js/tools/magic_erase.js index 1c88586..6a1c891 100644 --- a/src/js/tools/magic_erase.js +++ b/src/js/tools/magic_erase.js @@ -41,7 +41,7 @@ class Magic_erase_class extends Base_tools_class { return; } if (config.layer.rotate || 0 > 0) { - alertify.error('Erase on rotate object is disabled. Sorry.'); + alertify.error('Erase on rotate object is disabled. Please rasterize first.'); return; } diff --git a/src/js/tools/sharpen.js b/src/js/tools/sharpen.js index 02bb720..ad21137 100644 --- a/src/js/tools/sharpen.js +++ b/src/js/tools/sharpen.js @@ -46,7 +46,7 @@ class Sharpen_class extends Base_tools_class { return; } if (config.layer.rotate || 0 > 0) { - alertify.error('Erase on rotate object is disabled. Sorry.'); + alertify.error('Erase on rotate object is disabled. Please rasterize first.'); return; } this.started = true;