[Scummvm-git-logs] scummvm branch-3-0 -> 97d7eaf1dfa3b1f53ccbed26265b0726fecf05d5

larsamannen noreply at scummvm.org
Tue Dec 16 15:09:33 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:
97d7eaf1df IOS7: Disable bounces of the ScrollView containing the toolbar


Commit: 97d7eaf1dfa3b1f53ccbed26265b0726fecf05d5
    https://github.com/scummvm/scummvm/commit/97d7eaf1dfa3b1f53ccbed26265b0726fecf05d5
Author: Lars Sundström (l.sundstrom at gmail.com)
Date: 2025-12-16T16:09:12+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.

(cherry picked from commit dd673cecbbc0e17b9e630510569ee5f2e7d53c32)

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