1 Commits
Author SHA1 Message Date
ckaczor d3c428efd8 Change label justification
Deploy to Gitea Releases / deploy-to-gitea-releases (push) Successful in 56s
2026-03-06 17:13:03 -05:00
+3 -1
View File
@@ -255,7 +255,9 @@ internal class WindowSource : IWindowSource, IDisposable
if (text.Length > 0)
text.AppendLine();
text.Append($"{sensorEntry.Label.PadLeft(labelLength)}: {string.Format(sensorEntry.SensorValueFormat, sensorEntry.Sensor.Value)}");
var label = $"{sensorEntry.Label}:";
text.Append($"{label.PadRight(labelLength + 1)} {string.Format(sensorEntry.SensorValueFormat, sensorEntry.Sensor.Value)}");
}
_dispatcher.Invoke(() => _floatingStatusWindow.SetText(text.ToString()));