Add tooltip for last execution time of macro in macro list

This commit is contained in:
WarmUpTill
2026-02-01 00:31:42 +01:00
parent 3a9f315b67
commit 2dd9120265
5 changed files with 42 additions and 3 deletions

View File

@@ -311,6 +311,11 @@ bool Macro::OnChangePreventedActionsSince(const TimePoint &time) const
return _lastOnChangeActionsPreventedTime > time;
}
Macro::TimePoint Macro::GetLastExecutionTime() const
{
return _lastExecutionTime;
}
bool Macro::ConditionsShouldBeChecked() const
{
if (!_useCustomConditionCheckInterval) {