From 30b39069aed2c7ac131be9556c1e9a48115df328 Mon Sep 17 00:00:00 2001 From: Andrew Breckenridge Date: Thu, 26 Dec 2024 14:03:08 -0800 Subject: [PATCH] Settings: fix scroll indicator inset --- Sources/Settings/Controller/SettingsController.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Sources/Settings/Controller/SettingsController.swift b/Sources/Settings/Controller/SettingsController.swift index ad215f5b21..91edd9bc14 100644 --- a/Sources/Settings/Controller/SettingsController.swift +++ b/Sources/Settings/Controller/SettingsController.swift @@ -10,6 +10,7 @@ * Edgar Fouillet * Diogo Simao Marques * Felix Paul Kühne + * Andrew Breckenridge * * Refer to the COPYING file of the official project for license. *****************************************************************************/ @@ -73,6 +74,7 @@ class SettingsController: UITableViewController { self.tabBarItem.accessibilityIdentifier = VLCAccessibilityIdentifier.settings tableView.separatorStyle = .none tableView.cellLayoutMarginsFollowReadableWidth = false //Fix for iPad + tableView.verticalScrollIndicatorInsets = UIEdgeInsets(top: -1, left: 0, bottom: 0, right: 0) view.backgroundColor = PresentationTheme.current.colors.background actionSheet.modalPresentationStyle = .custom guard let unsafeSettingsBundle = getSettingsBundle() else { return }