From 1c5cc2e6fc1ef0954fc43c351df51619378b9c31 Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Fri, 16 Jun 2023 11:23:52 +0200 Subject: [PATCH] Base: fix typo --- Base/ScreenEx.vb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Base/ScreenEx.vb b/Base/ScreenEx.vb index 89db63e7..d70f15ca 100644 --- a/Base/ScreenEx.vb +++ b/Base/ScreenEx.vb @@ -49,7 +49,7 @@ Public Class ScreenEx RestoreFormState(pForm, oFormState) End Sub - Public Shared Sub RestoreWindowSize(pForm As Form, pFormSize As Size) + Public Shared Sub RestoreFormSize(pForm As Form, pFormSize As Size) Dim oFormSize As Size If pFormSize.Height < 1 Or pFormSize.Width < 1 Or pFormSize.IsEmpty Then oFormSize = New Size(DEFAULT_WINDOW_WIDTH, DEFAULT_WINDOW_HEIGHT)