Skip to content

Commit 777181c

Browse files
committed
Fix entry-log resize logic
1 parent 1195ddc commit 777181c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ActiveWindowLogger/frmMain.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ Public Class frmMain
229229

230230
Private Sub frmMain_Resize(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Resize
231231
lvEntries.Width = Me.Width - 30
232-
lvEntries.Height = Me.Height - 216
232+
lvEntries.Height = Me.Height - 230 ' form - ( menubar + top-frame + bottom buttons + spacings)
233233
End Sub
234234

235235
Private Sub AboutToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles AboutToolStripMenuItem.Click

0 commit comments

Comments
 (0)