close when you press ok

This commit is contained in:
freedom
2023-08-16 03:13:56 -06:00
parent e400645956
commit 6aaabd480a

View File

@@ -132,9 +132,13 @@ BOOL CALLBACK NewGroupDlgProc(HWND hWndDlg, UINT message, WPARAM wParam, LPARAM
// Group's ready!
if (CreateGroupWindow(&grp) != NULL)
{
EndDialog(hWndDlg, FALSE);
break;
}
// Failure!
EndDialog(hWndDlg, FALSE);
break;
}