Removed mutable members from class GLToolbar

This commit is contained in:
enricoturri1966 2021-04-16 15:49:37 +02:00
parent 4c464b35f9
commit 4da8de5f49
2 changed files with 38 additions and 58 deletions

View file

@ -233,10 +233,10 @@ private:
EType m_type;
std::string m_name;
bool m_enabled;
mutable GLTexture m_icons_texture;
mutable bool m_icons_texture_dirty;
GLTexture m_icons_texture;
bool m_icons_texture_dirty;
BackgroundTexture m_background_texture;
mutable Layout m_layout;
Layout m_layout;
ItemsList m_items;