Showing 1 changed files with 2 additions and 2 deletions
+2 -2
USB Meter/Views/Meter/MeterView.swift
@@ -153,14 +153,14 @@ struct MeterView: View {
153 153
                 .frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .top)
154 154
             }
155 155
             #if !targetEnvironment(macCatalyst)
156
-            .navigationBarHidden(Self.isTrueMacApp || landscape)
156
+            .navigationBarHidden(Self.isTrueMacApp && landscape)
157 157
             #else
158 158
             .navigationBarHidden(landscape)
159 159
             #endif
160 160
         }
161 161
         .background(meterBackground)
162 162
         .modifier(IOSOnlyNavBar(
163
-            apply: !Self.isTrueMacApp,
163
+            apply: !Self.isTrueMacApp && Self.isPhone,
164 164
             title: navBarTitle,
165 165
             showRSSI: navBarShowRSSI,
166 166
             rssi: navBarRSSI,