Skip to content

Commit

Permalink
Fix uninitialized access for new rendering in TrackContentWidget.
Browse files Browse the repository at this point in the history
  • Loading branch information
irrenhaus3 committed May 20, 2024
1 parent a527427 commit d79ccd2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions include/TrackContentWidget.h
Original file line number Diff line number Diff line change
Expand Up @@ -171,12 +171,12 @@ public slots:
QBrush m_horizontalColor;
QBrush m_embossColor;

int m_coarseGridWidth;
int m_fineGridWidth;
int m_horizontalWidth;
int m_embossWidth;
int m_coarseGridWidth{0};
int m_fineGridWidth{0};
int m_horizontalWidth{0};
int m_embossWidth{0};

int m_embossOffset;
int m_embossOffset{0};
} ;


Expand Down

0 comments on commit d79ccd2

Please sign in to comment.