1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-13 03:48:26 -06:00

Windows: remove recommendation of keyfiles files extensions and update documentation to mention risks of third-party file extensions.

This commit also adds red color to the warning text about keyfiles in keyfiles dialogs.
This commit is contained in:
Mounir IDRASSI
2023-09-06 01:42:23 +02:00
parent 609a638499
commit 0ad5c43eb4
49 changed files with 150 additions and 43 deletions

View File

@@ -487,6 +487,19 @@ BOOL CALLBACK KeyFilesDlgProc (HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lPa
}
return 1;
case WM_CTLCOLORSTATIC:
{
if (((HWND)lParam == GetDlgItem(hwndDlg, IDT_KEYFILE_WARNING)) )
{
// we're about to draw the static
// set the text colour in (HDC)wParam
SetBkMode((HDC)wParam,TRANSPARENT);
SetTextColor((HDC)wParam, RGB(255,0,0));
return (BOOL)GetSysColorBrush(COLOR_MENU);
}
}
return 0;
case WM_COMMAND:
if (lw == IDC_KEYADD)