Unix path fixes and search lock out

This commit is contained in:
Michael J. Seiferling
2016-03-03 15:22:47 -06:00
parent feb8a9d0b2
commit 0cafd00bf3
5 changed files with 55 additions and 30 deletions
+8 -1
View File
@@ -833,7 +833,14 @@ Public Class frmMain
Private Sub ToggleLog()
If bLogToggle = False Then
txtLog.Visible = True
Me.Size = New System.Drawing.Size(Me.Size.Width, 440)
'Unix Handler
If mgrCommon.IsUnix Then
Me.Size = New System.Drawing.Size(Me.Size.Width, 440)
Else
Me.Size = New System.Drawing.Size(Me.Size.Width, 425)
End If
bLogToggle = True
btnLogToggle.Text = frmMain_btnToggleLog_Hide
txtLog.Select(txtLog.TextLength, 0)