controller: Remove m_process_events field

This commit is contained in:
patrick96 2021-09-11 14:49:13 +02:00 committed by Patrick Ziegler
parent 75ff5c3b14
commit ba50bf0bc6
2 changed files with 0 additions and 6 deletions

View File

@ -103,11 +103,6 @@ class controller
*/ */
std::unique_ptr<uv_async_t> m_notifier{nullptr}; std::unique_ptr<uv_async_t> m_notifier{nullptr};
/**
* \brief State flag
*/
std::atomic<bool> m_process_events{false};
/** /**
* \brief Destination path of generated snapshot * \brief Destination path of generated snapshot
*/ */

View File

@ -703,7 +703,6 @@ bool controller::on(const signals::eventqueue::check_state&) {
* Process ui ready event * Process ui ready event
*/ */
bool controller::on(const signals::ui::ready&) { bool controller::on(const signals::ui::ready&) {
m_process_events = true;
trigger_update(true); trigger_update(true);
if (!m_snapshot_dst.empty()) { if (!m_snapshot_dst.empty()) {