1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-26 23:36:08 +03:00
This commit is contained in:
Tae Won Ha 2021-12-23 14:04:50 +01:00
parent d9e3863e5e
commit 9b35ebb3be
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44

View File

@ -62,9 +62,7 @@ public class NvimView: NSView,
get { self._linespacing }
set {
guard newValue >= NvimView.minLinespacing, newValue <= NvimView.maxLinespacing else {
return
}
guard newValue >= NvimView.minLinespacing, newValue <= NvimView.maxLinespacing else { return }
self._linespacing = newValue
self.updateFontMetaData(self._font)
@ -226,9 +224,7 @@ public class NvimView: NSView,
}
@available(*, unavailable)
public required init?(coder _: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
public required init?(coder _: NSCoder) { fatalError("init(coder:) has not been implemented") }
@IBAction public func debug1(_: Any?) {
#if DEBUG