Skip to content

Commit

Permalink
Reduced status view length.
Browse files Browse the repository at this point in the history
  • Loading branch information
filimo committed Feb 21, 2020
1 parent 283d680 commit 61fc1f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ReaderTranslator/Views/StatusBarView/StatusBarView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ struct StatusBarView: View {
speechHandler
playbackRateView
StatusBarView_SettingsView()
StatusBarView_Sync()
// StatusBarView_Sync()
}.padding(.trailing, 20)
}

Expand All @@ -42,7 +42,7 @@ struct StatusBarView: View {
private var playbackRateView: some View {
Group {
if viewsStore.enabledViews.contains(.safari) {
Text(String(format: "PlaybackRate: %.2f", [audioStore.playbackRate]))
Text(String(format: "Apple: %.2f", [audioStore.playbackRate]))
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ struct StatusBarView_Voice_Toggle: View {

var body: some View {
Group {
MenuButton("Speaker: \(isSpeakSentencesSign)\(isSpeakWordsSign)") {
MenuButton("Speak: \(isSpeakSentencesSign)\(isSpeakWordsSign)") {
VStack(spacing: 0) {
Text("Speak sentences")
HStack {
Expand Down

0 comments on commit 61fc1f9

Please sign in to comment.