mirror of
https://github.com/lifegpc/GARbro.git
synced 2026-06-06 05:28:49 +08:00
(GUI): trim newlines from statusline messages.
This commit is contained in:
@@ -183,12 +183,12 @@ namespace GARbro.GUI
|
||||
/// </summary>
|
||||
public void SetStatusText (string text)
|
||||
{
|
||||
Dispatcher.Invoke (() => { appStatusText.Text = text; });
|
||||
Dispatcher.Invoke (() => { appStatusText.Text = text.Trim(); });
|
||||
}
|
||||
|
||||
public void SetResourceText (string text)
|
||||
{
|
||||
Dispatcher.Invoke (() => { appResourceText.Text = text; });
|
||||
Dispatcher.Invoke (() => { appResourceText.Text = text.Trim(); });
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user