From 45d571e19f98494cef1a8d65739347f116b2a0ac Mon Sep 17 00:00:00 2001 From: Serhiy Mytrovtsiy Date: Mon, 26 Aug 2024 18:26:20 +0200 Subject: [PATCH] feat: adjusted bluetooth device margins in the popup view (#2092) --- Modules/Bluetooth/popup.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/Bluetooth/popup.swift b/Modules/Bluetooth/popup.swift index e966f64f..dec00375 100644 --- a/Modules/Bluetooth/popup.swift +++ b/Modules/Bluetooth/popup.swift @@ -80,6 +80,7 @@ internal class BLEView: NSStackView { self.alignment = .centerY self.spacing = 0 self.wantsLayer = true + self.edgeInsets = NSEdgeInsets(top: 0, left: 5, bottom: 0, right: 5) self.layer?.cornerRadius = 2 let nameView: NSTextField = TextView(frame: NSRect(x: 0, y: 0, width: 0, height: 16))