feat: adjusted value width in process view to fit bigger value (#2784)

This commit is contained in:
Serhiy Mytrovtsiy
2025-10-29 17:21:19 +01:00
parent 9198f66078
commit 7ee8f299b7

View File

@@ -198,7 +198,7 @@ public class ProcessView: NSStackView {
for _ in 0..<n {
let view: ValueField = ValueField()
view.widthAnchor.constraint(equalToConstant: 60).isActive = true
view.widthAnchor.constraint(equalToConstant: 68).isActive = true
if n != 1 {
view.font = NSFont.systemFont(ofSize: 10, weight: .regular)
}