commit fc53f1bc88348489c7b7cf1193cb1950a66c18d6
parent 4d088ee7a0110ae26717b789885c1f7186f2aab0
Author: Jatin Chowdhury <[email protected]>
Date: Sun, 4 Sep 2022 14:45:10 -0700
Fix main view scrolling when dragging sliders on iOS
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Plugin/Source/GUI/IOSOnly/ScrollView.cpp b/Plugin/Source/GUI/IOSOnly/ScrollView.cpp
@@ -11,7 +11,7 @@ ScrollView::ScrollView (foleys::MagicGUIBuilder& builder, ValueTree node)
viewport.setScrollBarsShown (true, false);
viewport.getVerticalScrollBar().setColour (ScrollBar::thumbColourId, Colour (0xFFEAA92C).withAlpha (0.7f));
viewport.setScrollBarThickness (10);
- viewport.setScrollOnDragMode (Viewport::ScrollOnDragMode::all);
+ viewport.setScrollOnDragMode (Viewport::ScrollOnDragMode::never);
dragToScrollListener = std::make_unique<DragToScrollListener> (viewport);
}