Skip to content
Snippets Groups Projects
Commit 1421cd8c authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

don't report step in time series

parent e47b75cb
No related branches found
No related tags found
No related merge requests found
......@@ -184,11 +184,7 @@ static void drawScaleLabel(drawContext *ctx, PView *p, double xmin, double ymin,
}
switch(choice){
case 1: // time series
if(n == 1)
sprintf(label, "%s - time %s", data->getName().c_str(), time);
else
sprintf(label, "%s - time %s (step %d in [0,%d])", data->getName().c_str(),
time, opt->timeStep, data->getNumTimeSteps() - 1);
sprintf(label, "%s - time %s", data->getName().c_str(), time);
break;
case 2: // harmonic data
if(n <= 2)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment