Double clicking a feed in the side bar opens the feed's homepage in the browser. Issue #1099
This commit is contained in:
parent
b3a5929d6d
commit
6707fdcbd1
@ -47,6 +47,7 @@ protocol SidebarDelegate: class {
|
|||||||
sidebarCellAppearance = SidebarCellAppearance(fontSize: AppDefaults.sidebarFontSize)
|
sidebarCellAppearance = SidebarCellAppearance(fontSize: AppDefaults.sidebarFontSize)
|
||||||
|
|
||||||
outlineView.dataSource = dataSource
|
outlineView.dataSource = dataSource
|
||||||
|
outlineView.doubleAction = #selector(doubleClickedSidebar(_:))
|
||||||
outlineView.setDraggingSourceOperationMask([.move, .copy], forLocal: true)
|
outlineView.setDraggingSourceOperationMask([.move, .copy], forLocal: true)
|
||||||
outlineView.registerForDraggedTypes([FeedPasteboardWriter.feedUTIInternalType, FeedPasteboardWriter.feedUTIType, .URL, .string])
|
outlineView.registerForDraggedTypes([FeedPasteboardWriter.feedUTIInternalType, FeedPasteboardWriter.feedUTIType, .URL, .string])
|
||||||
|
|
||||||
@ -154,6 +155,13 @@ protocol SidebarDelegate: class {
|
|||||||
deleteNodes(selectedNodes)
|
deleteNodes(selectedNodes)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@IBAction func doubleClickedSidebar(_ sender: Any?) {
|
||||||
|
guard outlineView.clickedRow == outlineView.selectedRow else {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
openInBrowser(sender)
|
||||||
|
}
|
||||||
|
|
||||||
@IBAction func openInBrowser(_ sender: Any?) {
|
@IBAction func openInBrowser(_ sender: Any?) {
|
||||||
guard let feed = singleSelectedFeed, let homePageURL = feed.homePageURL else {
|
guard let feed = singleSelectedFeed, let homePageURL = feed.homePageURL else {
|
||||||
return
|
return
|
||||||
|
Loading…
x
Reference in New Issue
Block a user