I have a single row of buttons in a Scroll View Grid. I recently added UIButton Scale to all of them so they'd scale up on hover and press.
After doing this, I noticed that when scrolling (finger swipe or mouse drag), it moves slower than 1:1 with the pixels on the screen.... In other words, without UIButton Scale, if I click my cursor on a button and drag to scroll the view, the pixel I click stays directly under the cursor. With UIButton Scale, the original pixel under the cursor lags behind, and you have to do extra work to scroll the view as far.
Presumably, the drag distance has scaled inversely to the button's scale up size? Is there a way to fix this or work around it easily without forgoing the UIButton Scale?