mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-27 18:12:30 +01:00
Enable refresh button on macOS
This commit is contained in:
parent
e34dbd48ee
commit
69fa598d99
@ -7,6 +7,7 @@
|
||||
//
|
||||
|
||||
import SwiftUI
|
||||
import Account
|
||||
|
||||
struct SceneNavigationView: View {
|
||||
|
||||
@ -92,6 +93,7 @@ struct SceneNavigationView: View {
|
||||
}
|
||||
ToolbarItem {
|
||||
Button {
|
||||
AccountManager.shared.refreshAll(errorHandler: handleRefreshError)
|
||||
} label: {
|
||||
AppAssets.refreshImage
|
||||
}
|
||||
@ -180,6 +182,11 @@ struct SceneNavigationView: View {
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
func handleRefreshError(_ error: Error) {
|
||||
sceneModel.accountErrorMessage = error.localizedDescription
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
struct NavigationView_Previews: PreviewProvider {
|
||||
|
Loading…
Reference in New Issue
Block a user