1
0
mirror of https://github.com/bobranten/Ext4Fsd.git synced 2025-10-29 13:18:30 -05:00

Disable donate dialog because the information is outdated

This commit is contained in:
Bo Branten
2024-06-14 14:15:59 +02:00
parent 40120e9908
commit 60ef4e64cf

View File

@@ -134,6 +134,10 @@ BOOL CAboutDlg::OnInitDialog()
// Set the Tooltiptext
// m_lMail.SetTootTipText("Write a mail to Ext2Fsd group.");
// Disable the "Donate" dialog because the information is outdated.
CWnd* donate = GetDlgItem(ID_DONATE);
if (donate) donate->EnableWindow(false);
return TRUE; // return TRUE unless you set the focus to a control
// EXCEPTION: OCX Property Pages should return FALSE
}
@@ -166,7 +170,7 @@ void CAboutDlg::OnExt2fsd()
{
// TODO: Add your control notification handler code here
ShellExecute(this->GetSafeHwnd(), "open",
"http://www.ext2fsd.com",
"http://github.com/bobranten/Ext4Fsd/",
NULL, NULL, SW_SHOW );
}
@@ -545,6 +549,11 @@ BOOL CExt2MgrDlg::OnInitDialog()
pSubFile->EnableMenuItem(ID_DISABLE_AUTOSTART, MF_BYCOMMAND|MF_GRAYED|MF_DISABLED);
}
}
// Disable the "Donate" dialog because the information is outdated.
CMenu* pSubHelp = pMenu->GetSubMenu(3);
if (pSubHelp) {
pSubHelp->EnableMenuItem(ID_DONATE, MF_BYCOMMAND | MF_GRAYED | MF_DISABLED);
}
m_Menu.CreatePopupMenu();