Fix missing function prototype
Some checks failed
Build / build-gentoo (push) Failing after 1m10s
Build / download-system-deps (push) Successful in 3m59s
Build / get-source-code (push) Successful in 9m45s
Build / build-deb (push) Failing after 4m54s
Build / build-appimage (push) Successful in 3m58s
Build / build-windows (push) Has been cancelled
Build / build-android (push) Has been cancelled

This commit is contained in:
Zachary Hall 2024-12-18 09:18:00 -08:00
parent 942987bbcb
commit 1b1f669ac5
2 changed files with 2 additions and 1 deletions

View file

@ -280,4 +280,4 @@ void LooperSlider::changeEvent(QEvent *event) {
this->slider->setEnabled(isEnabled());
this->text->setEnabled(isEnabled());
}
}
}

View file

@ -78,6 +78,7 @@ class LooperSlider : public QWidget {
const char *MaxLabel();
void SetLimitLabels(const char *min, const char *max);
void SetValue(double value);
void SetValueNoSignal(double value);
double Value();
void SetLogarithmic(bool logarithmic);
bool IsLogarithmic();