File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -60,8 +60,8 @@ struct tweaksection: Identifiable {
6060}
6161
6262
63- struct MiscView : View {
64- @ObservedObject private var mgr = laramgr. shared
63+ struct NuggetView : View {
64+ @ObservedObject var mgr : laramgr
6565 let fm = FileManager . default
6666 @State private var tweaks : [ tweaksection ] = [
6767 tweaksection ( name: " User Interface " , icon: " eye " , tweaks: [
@@ -116,7 +116,7 @@ struct MiscView: View {
116116 }
117117 tweaksui
118118 }
119- . navigationTitle ( " Title " )
119+ . navigationTitle ( " Nugget " )
120120 . refreshable {
121121 load ( )
122122 }
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ struct TweaksView: View {
5555 . disabled ( !mgr. sbxready)
5656 NavigationLink ( " Custom Overwrite " , destination: CustomView ( mgr: mgr) )
5757 . disabled ( !mgr. vfsready)
58- NavigationLink ( " Miscellaneous Tweaks " , destination: MiscView ( ) )
58+ NavigationLink ( " Nugget " , destination: NuggetView ( mgr : mgr ) )
5959 . disabled ( !mgr. sbxready || !mgr. vfsready)
6060 }
6161
You can’t perform that action at this time.
0 commit comments