diff --git a/Fltk/menuWindow.cpp b/Fltk/menuWindow.cpp
index ffd81a5f42ccc0f6cb5984efd9b1b135f9360fb8..e281f24736742293c8fb2b3caaa0746a78f0dd9a 100644
--- a/Fltk/menuWindow.cpp
+++ b/Fltk/menuWindow.cpp
@@ -1820,8 +1820,10 @@ static void mesh_inspect_cb(Fl_Widget *w, void *data)
         Msg::Direct("  Rho: %g", ele->rhoShapeMeasure());
         Msg::Direct("  Gamma: %g", ele->gammaShapeMeasure());
         Msg::Direct("  Eta: %g", ele->etaShapeMeasure());
-        double jmin,jmax;ele->scaledJacRange(jmin,jmax);
-        Msg::Direct("  Scaled Jacobian Range : %g %g",jmin,jmax );
+        double jmin, jmax; ele->scaledJacRange(jmin, jmax);
+        Msg::Direct("  Scaled Jacobian Range: %g %g", jmin, jmax);
+        Msg::Direct("  Inner / outer radius: %g / %g",
+                    ele->getInnerRadius(), ele->getOuterRadius());
         CTX::instance()->mesh.changed = ENT_ALL;
         drawContext::global()->draw();
         FlGui::instance()->showMessages();
diff --git a/benchmarks/step/Solid_56.geo b/benchmarks/step/Solid_56.geo
new file mode 100644
index 0000000000000000000000000000000000000000..8442152d038a0931be8aad89e4b7a276e0b44b8c
--- /dev/null
+++ b/benchmarks/step/Solid_56.geo
@@ -0,0 +1,4 @@
+Merge "Solid_56.step";
+Mesh.CharacteristicLengthMax = 3;
+Mesh.CharacteristicLengthFromCurvature = 1;
+
diff --git a/benchmarks/bugs/Solid_56.step b/benchmarks/step/Solid_56.step
similarity index 100%
rename from benchmarks/bugs/Solid_56.step
rename to benchmarks/step/Solid_56.step