mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Add right-click action to the Article Extractor Button. Fixes #3695
This commit is contained in:
19
Shared/Extensions/NSEvent-Extensions.swift
Normal file
19
Shared/Extensions/NSEvent-Extensions.swift
Normal file
@@ -0,0 +1,19 @@
|
||||
//
|
||||
// NSEvent-Extensions.swift
|
||||
// NetNewsWire
|
||||
//
|
||||
// Created by Maurice Parker on 9/26/22.
|
||||
// Copyright © 2022 Ranchero Software. All rights reserved.
|
||||
//
|
||||
|
||||
import Foundation
|
||||
|
||||
extension NSEvent {
|
||||
|
||||
var isRightClick: Bool {
|
||||
let rightClick = (self.type == .rightMouseDown)
|
||||
let controlClick = self.modifierFlags.contains(.control)
|
||||
return rightClick || controlClick
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user