Merge branch 'main' of https://github.com/Ranchero-Software/NetNewsWire into main
This commit is contained in:
commit
32c0911d6e
|
@ -301,6 +301,10 @@ struct AppAssets {
|
|||
return IconImage(coloredImage, isSymbol: true)
|
||||
#endif
|
||||
}
|
||||
|
||||
static var sidebarToggleImage: Image {
|
||||
return Image(systemName: "sidebar.left")
|
||||
}
|
||||
|
||||
#if os(macOS)
|
||||
static var webStatusBarBackground: NSColor = {
|
||||
|
|
|
@ -110,6 +110,7 @@ struct MainApp: App {
|
|||
}
|
||||
.tag(MacPreferencePane.advanced)
|
||||
}
|
||||
.preferredColorScheme(AppDefaults.userInterfaceColorScheme)
|
||||
.frame(width: 500)
|
||||
.padding()
|
||||
}
|
||||
|
|
|
@ -8,6 +8,9 @@
|
|||
|
||||
import SwiftUI
|
||||
import Account
|
||||
#if os(macOS)
|
||||
import AppKit
|
||||
#endif
|
||||
|
||||
struct SceneNavigationView: View {
|
||||
|
||||
|
@ -99,6 +102,14 @@ struct SceneNavigationView: View {
|
|||
.toolbar {
|
||||
|
||||
#if os(macOS)
|
||||
ToolbarItem(placement: .navigation) {
|
||||
Button {
|
||||
NSApp.keyWindow?.firstResponder?.tryToPerform(#selector(NSSplitViewController.toggleSidebar(_:)), with: nil)
|
||||
} label: {
|
||||
AppAssets.sidebarToggleImage
|
||||
}
|
||||
.help("Toggle Sidebar")
|
||||
}
|
||||
ToolbarItem() {
|
||||
Menu {
|
||||
Button("Add Web Feed", action: { sheetToShow = .web })
|
||||
|
@ -111,8 +122,6 @@ struct SceneNavigationView: View {
|
|||
}
|
||||
ToolbarItem {
|
||||
Button {
|
||||
// AccountManager.shared.refreshAll(errorHandler: handleRefreshError)
|
||||
|
||||
AccountManager.shared.refreshAll(completion: nil)
|
||||
|
||||
} label: {
|
||||
|
@ -130,10 +139,10 @@ struct SceneNavigationView: View {
|
|||
.disabled(sceneModel.markAllAsReadButtonState == nil)
|
||||
.help("Mark All as Read")
|
||||
}
|
||||
ToolbarItem {
|
||||
MacSearchField()
|
||||
.frame(width: 200)
|
||||
}
|
||||
// ToolbarItem {
|
||||
// MacSearchField()
|
||||
// .frame(width: 200)
|
||||
// }
|
||||
ToolbarItem {
|
||||
Button {
|
||||
sceneModel.goToNextUnread()
|
||||
|
|
Loading…
Reference in New Issue