From 6fda909cc8ccf8aa17ed985190f207612d0cbd79 Mon Sep 17 00:00:00 2001 From: Serhiy Mytrovtsiy Date: Mon, 19 Jul 2021 19:04:52 +0200 Subject: [PATCH] feat: add Bluetooth device UUID to the name toolTip --- Modules/Bluetooth/popup.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/Bluetooth/popup.swift b/Modules/Bluetooth/popup.swift index 8b016ae7..7a24aaef 100644 --- a/Modules/Bluetooth/popup.swift +++ b/Modules/Bluetooth/popup.swift @@ -73,6 +73,7 @@ internal class BLEView: NSStackView { let nameView: NSTextField = TextView(frame: NSRect(x: 0, y: 0, width: 0, height: 16)) nameView.font = NSFont.systemFont(ofSize: 13, weight: .light) nameView.stringValue = name + nameView.toolTip = uuid.uuidString self.addArrangedSubview(nameView) self.addArrangedSubview(NSView())