mirror of
https://github.com/jellyfin/Swiftfin.git
synced 2024-12-13 08:56:51 +00:00
Add missing accessibility label to the settings buttons
This commit is contained in:
parent
f97b467390
commit
68f143460a
@ -85,5 +85,6 @@ final class MainTabCoordinator: TabCoordinatable {
|
|||||||
@ViewBuilder
|
@ViewBuilder
|
||||||
func makeSettingsTab(isActive: Bool) -> some View {
|
func makeSettingsTab(isActive: Bool) -> some View {
|
||||||
Image(systemName: "gearshape.fill")
|
Image(systemName: "gearshape.fill")
|
||||||
|
.accessibilityLabel(L10n.settings)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -127,6 +127,7 @@ struct HomeView: View {
|
|||||||
homeRouter.route(to: \.settings)
|
homeRouter.route(to: \.settings)
|
||||||
} label: {
|
} label: {
|
||||||
Image(systemName: "gearshape.fill")
|
Image(systemName: "gearshape.fill")
|
||||||
|
.accessibilityLabel(L10n.settings)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -104,6 +104,7 @@ struct ServerListView: View {
|
|||||||
serverListRouter.route(to: \.basicAppSettings)
|
serverListRouter.route(to: \.basicAppSettings)
|
||||||
} label: {
|
} label: {
|
||||||
Image(systemName: "gearshape.fill")
|
Image(systemName: "gearshape.fill")
|
||||||
|
.accessibilityLabel(L10n.settings)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user