fix: remove workaround
This commit is contained in:
parent
5e43b4f587
commit
5314b74dae
|
@ -14,11 +14,7 @@ waybar::modules::Clock::Clock(const std::string& id, const Json::Value& config)
|
||||||
auto sub_m =
|
auto sub_m =
|
||||||
std::chrono::duration_cast<std::chrono::seconds>(time_s.time_since_epoch()).count() %
|
std::chrono::duration_cast<std::chrono::seconds>(time_s.time_since_epoch()).count() %
|
||||||
interval_.count();
|
interval_.count();
|
||||||
if (sub_m > 0) {
|
thread_.sleep_until(timeout - std::chrono::seconds(sub_m));
|
||||||
thread_.sleep_until(timeout - std::chrono::seconds(sub_m - 1));
|
|
||||||
} else {
|
|
||||||
thread_.sleep_until(timeout - std::chrono::seconds(sub_m));
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue