diff --git a/src/Plugin/ImageEffect/FocalPointScaleAndCropImageEffect.php b/src/Plugin/ImageEffect/FocalPointScaleAndCropImageEffect.php
index 176bd1a..37ce894 100644
--- a/src/Plugin/ImageEffect/FocalPointScaleAndCropImageEffect.php
+++ b/src/Plugin/ImageEffect/FocalPointScaleAndCropImageEffect.php
@@ -43,4 +43,17 @@ class FocalPointScaleAndCropImageEffect extends FocalPointEffectBase {
     return $this->applyCrop($image, $crop);
   }
 
+  /**
+   * {@inheritdoc}
+   */
+  public function defaultConfiguration() {
+    // Include a "crop_type" in the default configuration, so that this image
+    // effect looks more like a Crop effect.
+    // See https://www.drupal.org/node/2842260
+    return parent::defaultConfiguration() + [
+      'crop_type' => 'focal_point'
+    ];
+
+  }
+
 }
