MCPcopy Create free account
hub / github.com/WarmUpTill/SceneSwitcher / PauseContinueClicked

Method PauseContinueClicked

plugins/base/macro-condition-timer.cpp:260–271  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

258}
259
260void MacroConditionTimerEdit::PauseContinueClicked()
261{
262 GUARD_LOADING_AND_LOCK();
263 if (_entryData->_paused) {
264 timer.start(1000);
265 _entryData->Continue();
266 } else {
267 _entryData->Pause();
268 timer.stop();
269 }
270 SetPauseContinueButtonLabel();
271}
272
273void MacroConditionTimerEdit::ResetClicked()
274{

Callers

nothing calls this directly

Calls 3

ContinueMethod · 0.80
PauseMethod · 0.80
startMethod · 0.45

Tested by

no test coverage detected