fix: adjusted menu background color for dark themes (#727)

This commit is contained in:
Serhiy Mytrovtsiy
2021-11-29 17:20:29 +01:00
parent 449a54f1b6
commit 41eb8cef8e

View File

@@ -411,7 +411,7 @@ private class MenuView: NSView {
public func activate() {
NotificationCenter.default.post(name: .openModuleSettings, object: nil, userInfo: ["module": self.title])
self.layer?.backgroundColor = .init(gray: 0.1, alpha: 0.4)
self.layer?.backgroundColor = .init(gray: 0.01, alpha: 0.25)
self.active = true
}