Skip to content

Commit fe07500

Browse files
50n50cranci1
andauthored
Fixes and additions (#222)
* Remove title shadow (tested and still easy to read) * fix icons * Maybe fixed icon * fixed title :3 * disable title in portrait * Fix controls in portrait * Fix skip 85s buttons showing * now accounts for force landscape * Auto hide UI on opening reader * Disable text sliding * Fix reader fake network issue * Fix tab bar in library * hide status bar with UI in reader * added progressbar * amde progressbar usable * Update ReaderView.swift --------- Co-authored-by: cranci <100066266+cranci1@users.noreply.github.com>
1 parent a926327 commit fe07500

File tree

5 files changed

+526
-192
lines changed

5 files changed

+526
-192
lines changed

Sora/ContentView.swift

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ struct ContentView: View {
9393
) { _ in
9494
lastHideTime = Date()
9595
tabBarVisible = false
96-
Logger.shared.log("Tab bar hidden", type: "Debug")
9796
}
9897

9998
NotificationCenter.default.addObserver(
@@ -104,9 +103,6 @@ struct ContentView: View {
104103
let timeSinceHide = Date().timeIntervalSince(lastHideTime)
105104
if timeSinceHide > 0.2 {
106105
tabBarVisible = true
107-
Logger.shared.log("Tab bar shown after \(timeSinceHide) seconds", type: "Debug")
108-
} else {
109-
Logger.shared.log("Tab bar show request ignored, only \(timeSinceHide) seconds since hide", type: "Debug")
110106
}
111107
}
112108
}

0 commit comments

Comments
 (0)