# HG changeset patch # User Ben Abbott # Date 1340317523 14400 # Node ID fce841c941a5d3facaf27c99258f19751b57e009 # Parent 41dcb2c5bb1a95097e54eb6b004b7ad3a941a9ca The color property for new plot axes should take on the default value. * src/graphics.cc (axes::properties::set_defaults): The default value of the axes "color" should be white. diff --git a/src/graphics.cc b/src/graphics.cc --- a/src/graphics.cc +++ b/src/graphics.cc @@ -4284,7 +4284,7 @@ xticklabelmode = "auto"; yticklabelmode = "auto"; zticklabelmode = "auto"; - color = "none"; + color = color_values ("white"); xcolor = color_values ("black"); ycolor = color_values ("black"); zcolor = color_values ("black");