Minor change to initialize m_tagBands in Timeline ctor

This commit is contained in:
David Capello 2017-03-26 21:54:08 -03:00
parent 27bc151a37
commit 054d3b139a
2 changed files with 2 additions and 1 deletions

View File

@ -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)

View File

@ -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;