From 108ea1297c4f77e229a19ce59decb68cfac9877c Mon Sep 17 00:00:00 2001 From: nimbold <11913706+nimbold@users.noreply.github.com> Date: Tue, 2 Jun 2026 07:08:22 +0330 Subject: [PATCH] fix(ui): align connections row and clarify server connections behavior --- Sources/Firelink/AddDownloadsView.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/Firelink/AddDownloadsView.swift b/Sources/Firelink/AddDownloadsView.swift index ae74e9c..300a125 100644 --- a/Sources/Firelink/AddDownloadsView.swift +++ b/Sources/Firelink/AddDownloadsView.swift @@ -98,7 +98,7 @@ struct AddDownloadsView: View { } } - GridRow { + GridRow(alignment: .firstTextBaseline) { Label("Connections per File", systemImage: "point.3.connected.trianglepath.dotted") .font(.headline) VStack(alignment: .leading, spacing: 4) { @@ -109,7 +109,7 @@ struct AddDownloadsView: View { .monospacedDigit() .frame(width: 130, alignment: .leading) } - Text("Firelink splits each file into this many parallel segments.") + Text("Firelink splits each file into this many parallel segments. This also sets the number of concurrent connections to the server.") .font(.caption) .foregroundStyle(.secondary) }