diff options
-rw-r--r-- | src/Common/Keyfiles.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Common/Keyfiles.c b/src/Common/Keyfiles.c index 4a6baf46..88ab5ece 100644 --- a/src/Common/Keyfiles.c +++ b/src/Common/Keyfiles.c @@ -556,8 +556,9 @@ BOOL CALLBACK KeyFilesDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPa if (lw == IDC_LINK_KEYFILES_INFO)
{
Applink ("keyfiles", TRUE, "");
+ return 1;
}
if (lw == IDOK)
{
@@ -573,8 +574,9 @@ BOOL CALLBACK KeyFilesDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPa EndDialog (hwndDlg, IDCLOSE);
return 1;
}
+ break;
case WM_DROPFILES:
{
HDROP hdrop = (HDROP) wParam;
|