Skip to content

Commit

Permalink
Do not show stream info, zoom, camera and mic in to left of UI be def…
Browse files Browse the repository at this point in the history
…ault.
  • Loading branch information
eerimoq committed Apr 25, 2024
1 parent 379f6f5 commit b038132
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Moblin/Various/Settings.swift
Original file line number Diff line number Diff line change
Expand Up @@ -878,14 +878,14 @@ class SettingsShow: Codable {
var chat: Bool = true
var viewers: Bool = true
var uptime: Bool = true
var stream: Bool = true
var stream: Bool = false
var speed: Bool = true
var audioLevel: Bool = true
var zoom: Bool = true
var zoom: Bool = false
var zoomPresets: Bool = true
var microphone: Bool = true
var microphone: Bool = false
var audioBar: Bool = true
var cameras: Bool? = true
var cameras: Bool? = false
var obsStatus: Bool? = true
var rtmpSpeed: Bool? = true
var gameController: Bool? = true
Expand Down Expand Up @@ -1889,7 +1889,7 @@ final class Settings {
store()
}
if realDatabase.show.cameras == nil {
realDatabase.show.cameras = true
realDatabase.show.cameras = false
store()
}
for preset in realDatabase.zoom.back where preset.x == nil {
Expand Down

0 comments on commit b038132

Please sign in to comment.