Set plot staircase using plot configuration message.

This commit is contained in:
Bartosz Taudul 2022-07-24 13:09:45 +02:00
parent 3f51409389
commit dceb2399ee
No known key found for this signature in database
GPG Key ID: B7FE2008B7575DF3

View File

@ -5684,13 +5684,13 @@ void Worker::ProcessPlotConfig( const QueuePlotConfig& ev )
auto plot = m_slab.AllocInit<PlotData>();
plot->name = name;
plot->type = PlotType::User;
plot->showSteps = false;
return plot;
}, [this]( uint64_t name ) {
Query( ServerQueryPlotName, name );
} );
plot->format = (PlotValueFormatting)ev.type;
plot->showSteps = ev.step;
}
void Worker::ProcessMessage( const QueueMessage& ev )