Skip to content

Commit 25a7284

Browse files
committed
Fix WinNUT string being applied to window title
The main window title of WinNUT occasionally deviated from the defined program name (WinNUT Client) to just WinNUT. The string has been replaced.
1 parent 09965f9 commit 25a7284

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

WinNUT_V2/WinNUT-Client/WinNUT.vb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,10 +309,10 @@ Public Class WinNUT
309309
If NotifyIcon.Visible = False Then
310310
Text = FormText
311311
Else
312-
Text = "WinNUT"
312+
Text = ProgramName
313313
End If
314314
ElseIf sender.WindowState = FormWindowState.Maximized Or sender.WindowState = FormWindowState.Normal Then
315-
Text = "WinNUT"
315+
Text = ProgramName
316316
End If
317317
End Sub
318318

0 commit comments

Comments
 (0)