Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Settings: fix scroll indicator inset #459

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Sources/Settings/Controller/SettingsController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
* Edgar Fouillet <vlc # edgar.fouillet.eu>
* Diogo Simao Marques <[email protected]>
* Felix Paul Kühne <fkuehne # videolan.org>
* Andrew Breckenridge <[email protected]>
*
* Refer to the COPYING file of the official project for license.
*****************************************************************************/
Expand Down Expand Up @@ -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 }
Expand Down