1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2025-04-14 17:33:17 -04:00

Remove atomic members from static modules

This commit is contained in:
patrick96 2021-09-30 15:27:39 +02:00 committed by Patrick Ziegler
parent 6b6bcf5080
commit 4f8f076714
2 changed files with 2 additions and 2 deletions
include/modules

View file

@ -45,7 +45,7 @@ namespace modules {
vector<unique_ptr<menu_tree>> m_levels;
std::atomic<int> m_level{-1};
int m_level{-1};
};
} // namespace modules

View file

@ -57,7 +57,7 @@ namespace modules {
progressbar_t m_progressbar;
bool m_scroll{true};
std::atomic<int> m_percentage{0};
int m_percentage{0};
};
} // namespace modules