From fa681bfcf5cbfcc711fb0ab10f3fd74ac83bf18c Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Mon, 15 Dec 2025 00:11:21 +0100 Subject: Apply formatting rules --- Map/Presentation/Base Components/MapTextEditor/HoverView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Map/Presentation/Base Components/MapTextEditor/HoverView.swift') diff --git a/Map/Presentation/Base Components/MapTextEditor/HoverView.swift b/Map/Presentation/Base Components/MapTextEditor/HoverView.swift index eeccec3..69ebfc0 100644 --- a/Map/Presentation/Base Components/MapTextEditor/HoverView.swift +++ b/Map/Presentation/Base Components/MapTextEditor/HoverView.swift @@ -49,7 +49,7 @@ class HoverView: NSView { box.topAnchor.constraint(equalTo: topAnchor), box.leadingAnchor.constraint(equalTo: leadingAnchor), box.trailingAnchor.constraint(equalTo: trailingAnchor), - box.bottomAnchor.constraint(equalTo: bottomAnchor), + box.bottomAnchor.constraint(equalTo: bottomAnchor) ]) let label = NSTextField(labelWithString: message) @@ -89,7 +89,7 @@ class HoverView: NSView { button.leadingAnchor.constraint(equalTo: label.trailingAnchor, constant: 8), button.trailingAnchor.constraint(equalTo: trailingAnchor, constant: -8), - heightAnchor.constraint(equalToConstant: 32), + heightAnchor.constraint(equalToConstant: 32) ]) } -- cgit