Skip to content

Commit

Permalink
fix: Auto Reset Cycle After #1002
Browse files Browse the repository at this point in the history
PR: #1013
  • Loading branch information
pepper-jelly authored Jul 31, 2024
1 parent 7b64715 commit bdb2ac2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/advancebuttondialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1284,7 +1284,7 @@ void AdvanceButtonDialog::checkCycleResetWidgetStatus(bool enabled)

void AdvanceButtonDialog::setButtonCycleResetInterval(double value)
{
int milliseconds = (value * 1000) + (fmod(value, 1.0) * 1000);
int milliseconds = value * 1000;
m_button->setCycleResetTime(milliseconds);
}

Expand Down

0 comments on commit bdb2ac2

Please sign in to comment.