diff --git a/controlsActions.pde b/controlsActions.pde index f26c132..6a1ba25 100644 --- a/controlsActions.pde +++ b/controlsActions.pde @@ -896,7 +896,7 @@ void button_mode_drawPixelsDialog() rStyle.add("Scribble", PIXEL_STYLE_SCRIBBLE); if (currentHardware >= HARDWARE_VER_MEGA) { - rStyle.add("Circles", PIXEL_STYLE_CIRCLE); + rStyle.add("Spiral", PIXEL_STYLE_CIRCLE); rStyle.add("Sawtooth", PIXEL_STYLE_SAW); } rStyle.setWindow(dialogWindow); diff --git a/controlsSetup.pde b/controlsSetup.pde index a5f1e86..311e2f1 100644 --- a/controlsSetup.pde +++ b/controlsSetup.pde @@ -806,7 +806,7 @@ Map buildControlLabels() result.put(MODE_RENDER_SQUARE_PIXELS, "Shade Squarewave"); result.put(MODE_RENDER_SCALED_SQUARE_PIXELS, "Shade Scaled Square"); result.put(MODE_RENDER_SAW_PIXELS, "Shade sawtooth"); - result.put(MODE_RENDER_CIRCLE_PIXELS, "Shade circular"); + result.put(MODE_RENDER_CIRCLE_PIXELS, "Shade spiral"); result.put(MODE_INPUT_ROW_START, "Select Row start"); result.put(MODE_INPUT_ROW_END, "Select Row end"); result.put(MODE_SET_POSITION, "Set pen position");