mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Slider: Add getScrollWheelEnabled function
This commit is contained in:
parent
43e577ba6c
commit
19e1488e18
2 changed files with 4 additions and 0 deletions
|
|
@ -1630,6 +1630,7 @@ void Slider::valueChanged() {}
|
|||
void Slider::setPopupMenuEnabled (bool menuEnabled) { pimpl->menuEnabled = menuEnabled; }
|
||||
void Slider::setScrollWheelEnabled (bool enabled) { pimpl->scrollWheelEnabled = enabled; }
|
||||
|
||||
bool Slider::isScrollWheelEnabled() const noexcept { return pimpl->scrollWheelEnabled; }
|
||||
bool Slider::isHorizontal() const noexcept { return pimpl->isHorizontal(); }
|
||||
bool Slider::isVertical() const noexcept { return pimpl->isVertical(); }
|
||||
bool Slider::isRotary() const noexcept { return pimpl->isRotary(); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue