# HG changeset patch # User John W. Eaton # Date 1328313891 18000 # Node ID a9a42d630bd5083d3ebc13b96bd0790306fa937c # Parent 7dee2bb231c149fc264b86c5912e5606c8b2c071 use 8 minor tick marks per decade for log scale plots, not 9. * graphics.cc (axes::properties::calc_ticks_and_lims): Use 8 minor tick marks for log scale axes, not 9. diff --git a/src/graphics.cc b/src/graphics.cc --- a/src/graphics.cc +++ b/src/graphics.cc @@ -5826,7 +5826,7 @@ ticks = tmp_ticks; - int n = is_logscale ? 9 : 4; + int n = is_logscale ? 8 : 4; Matrix tmp_mticks (1, n * (tmp_ticks.numel () - 1)); for (int i = 0; i < tmp_ticks.numel ()-1; i++)