mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
Allow ImageViewController to be closed with the space key on physical keyoard for iOS.
This commit is contained in:
committed by
Brent Simmons
parent
b7d4041781
commit
e6a11197fe
@@ -25,6 +25,16 @@ class ImageViewController: UIViewController {
|
||||
return imageScrollView.zoomedFrame
|
||||
}
|
||||
|
||||
override var keyCommands: [UIKeyCommand]? {
|
||||
return [
|
||||
UIKeyCommand(
|
||||
title: NSLocalizedString("Close Image", comment: "Close Image"),
|
||||
action: #selector(done(_:)),
|
||||
input: " "
|
||||
)
|
||||
]
|
||||
}
|
||||
|
||||
override func viewDidLoad() {
|
||||
super.viewDidLoad()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user