[chore:] tiny improvements for address check

This commit is contained in:
2026-05-02 15:39:42 +02:00
parent 488830cdad
commit 56233e6f5c
5 changed files with 24 additions and 8 deletions
+2 -2
View File
@@ -16,9 +16,9 @@ public partial class ProgressWindow : Window
PbProgress.Value = percentage;
}
public void AddToLog(string message)
public void AddToLog(string message, string percent)
{
TbLog.Text = message;
TbLog.Text = message + $"\n{percent}%";
//ScvLog.ScrollToEnd();
}
}