Skip to content

Commit

Permalink
Minor change to initialize m_tagBands in Timeline ctor
Browse files Browse the repository at this point in the history
  • Loading branch information
dacap committed Mar 27, 2017
1 parent 27bc151 commit 054d3b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/app/ui/timeline/timeline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ Timeline::Timeline()
, m_document(NULL)
, m_sprite(NULL)
, m_state(STATE_STANDBY)
, m_tagBands(0)
, m_separator_x(100 * guiscale())
, m_separator_w(1)
, m_confPopup(NULL)
Expand Down
2 changes: 1 addition & 1 deletion src/app/ui/timeline/timeline.h
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ namespace app {
std::vector<LayerInfo> m_layers;

// Data used to display frame tags
int m_tagBands = 0;
int m_tagBands;
std::map<FrameTag*, int> m_tagBand;

int m_separator_x;
Expand Down

0 comments on commit 054d3b1

Please sign in to comment.