[Scummvm-git-logs] scummvm master -> 751435c86df9fb3d43723e5ca7b9c719c852c4ab
larsamannen
noreply at scummvm.org
Tue Dec 16 14:56:10 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
751435c86d IOS7: Disable bounces of the ScrollView containing the toolbar
Commit: 751435c86df9fb3d43723e5ca7b9c719c852c4ab
https://github.com/scummvm/scummvm/commit/751435c86df9fb3d43723e5ca7b9c719c852c4ab
Author: Lars Sundström (l.sundstrom at gmail.com)
Date: 2025-12-16T15:56:05+01:00
Commit Message:
IOS7: Disable bounces of the ScrollView containing the toolbar
The "extra" toolbar with additional buttons, e.g. the function buttons,
lives within a ScrollView because all buttons doesn't fit within the
screen boundries.
Disable bounces of the ScrollView so if scrolling "too far" so no
black background can be seen when scrolling outside the UITabBar
edges.
Changed paths:
backends/platform/ios7/ios7_keyboard.mm
diff --git a/backends/platform/ios7/ios7_keyboard.mm b/backends/platform/ios7/ios7_keyboard.mm
index c02086599b7..d038b4a76f9 100644
--- a/backends/platform/ios7/ios7_keyboard.mm
+++ b/backends/platform/ios7/ios7_keyboard.mm
@@ -136,6 +136,7 @@
scrollView.autoresizingMask = toolbar.autoresizingMask;
scrollView.showsVerticalScrollIndicator = false;
scrollView.showsHorizontalScrollIndicator = false;
+ scrollView.bounces = false;
toolbar.autoresizingMask = UIViewAutoresizingNone;
[scrollView addSubview:toolbar];
self.inputAccessoryView = nil;
More information about the Scummvm-git-logs
mailing list