From 1a0949f2e8f85f5318a30cb9881c2d401106b804 Mon Sep 17 00:00:00 2001 From: MusicalProgrammer Date: Thu, 6 Oct 2022 21:36:12 -0400 Subject: [PATCH 1/3] Fix: PropertyGrid crash when you resize it after it resets --- src/source/propertyGrid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/source/propertyGrid.cpp b/src/source/propertyGrid.cpp index 2de3fae..9a0c83a 100644 --- a/src/source/propertyGrid.cpp +++ b/src/source/propertyGrid.cpp @@ -3917,7 +3917,7 @@ static BOOL Grid_OnGetSel(INT iItem) static VOID Grid_OnResetContent(VOID) { ListBox_ResetContent(g_lpInst->hwndListMap); - + g_lpInst->lpCurrent = NULL; if (NULL != g_lpInst->hwndCtl1) { DestroyWindow(g_lpInst->hwndCtl1); From 17f08a59cefadd956d7e3ed790c938d5d64ea4ef Mon Sep 17 00:00:00 2001 From: MusicalProgrammer Date: Thu, 6 Oct 2022 22:04:57 -0400 Subject: [PATCH 2/3] Increment Versioning --- src/include/versioning.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/versioning.h b/src/include/versioning.h index 443cf65..cc0cc7f 100644 --- a/src/include/versioning.h +++ b/src/include/versioning.h @@ -4,7 +4,7 @@ #define APP_GENER 0 #define APP_MAJOR 0 -#define APP_MINOR 107 +#define APP_MINOR 108 #define APP_PATCH 0 #define APP_VER_STRING APP_GENER.APP_MAJOR.APP_MINOR.APP_PATCH From b6dfd62b4c91f2c7752ea84b0010afa5e4d2ce6d Mon Sep 17 00:00:00 2001 From: MusicalProgrammer Date: Thu, 6 Oct 2022 22:10:25 -0400 Subject: [PATCH 3/3] Increment APP_PATCH instead --- src/include/versioning.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/versioning.h b/src/include/versioning.h index cc0cc7f..249ec95 100644 --- a/src/include/versioning.h +++ b/src/include/versioning.h @@ -4,8 +4,8 @@ #define APP_GENER 0 #define APP_MAJOR 0 -#define APP_MINOR 108 -#define APP_PATCH 0 +#define APP_MINOR 107 +#define APP_PATCH 1 #define APP_VER_STRING APP_GENER.APP_MAJOR.APP_MINOR.APP_PATCH