File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -361,12 +361,17 @@ struct BrowserView: View {
361361 get: { self . currentFilterAvailability } ,
362362 set: {
363363 self . filterAvailability = $0
364- appState . userSettings. defaultBrowserViewFilterAvailability = $0
364+ userSettings. defaultBrowserViewFilterAvailability = $0
365365 } )
366366 ) {
367367 Label ( " All files and folders " , systemImage: " folder " ) . tag ( BrowserViewFilterAvailability . all)
368368 Label ( " Only files on this device " , systemImage: " folder.fill " ) . tag ( BrowserViewFilterAvailability . localOnly)
369369 } . pickerStyle ( . inline)
370+
371+ Divider ( )
372+
373+ Toggle ( " Hide dotfiles " , isOn: userSettings. $dotFilesHidden)
374+
370375 } label: {
371376 Label ( " Filter " , systemImage: " line.3.horizontal.decrease " )
372377 . tint ( self . currentFilterAvailability == . all ? nil : Color . accentColor)
You can’t perform that action at this time.
0 commit comments