fix(bar): Action x values should not be volatile

This commit is contained in:
Michael Carlberg 2016-12-20 07:46:51 +01:00
parent 1cccd100bb
commit ccbb38798d
1 changed files with 2 additions and 2 deletions

View File

@ -89,8 +89,8 @@ struct action {
struct action_block : public action {
alignment align{alignment::NONE};
volatile double start_x{0.0};
volatile double end_x{0.0};
double start_x{0.0};
double end_x{0.0};
bool active{true};
uint16_t width() const {