mirror of
https://github.com/veracrypt/VeraCrypt
synced 2024-11-23 19:43:27 +01:00
macOSX: Add "FUSE-T build" in About dialog when linking against FUSE-T instead of MacFUSE
This commit is contained in:
parent
423352056e
commit
875a1da0fb
@ -27,7 +27,11 @@ namespace VeraCrypt
|
||||
versionStaticTextFont.SetWeight (wxFONTWEIGHT_BOLD);
|
||||
VersionStaticText->SetFont (versionStaticTextFont);
|
||||
|
||||
VersionStaticText->SetLabel (Application::GetName() + L" " + StringConverter::ToWide (Version::String()));
|
||||
wstring versionStr = StringConverter::ToWide (Version::String());
|
||||
#ifdef VC_MACOSX_FUSET
|
||||
versionStr += L" (FUSE-T build)";
|
||||
#endif
|
||||
VersionStaticText->SetLabel (Application::GetName() + L" " + versionStr);
|
||||
CopyrightStaticText->SetLabel (TC_STR_RELEASED_BY);
|
||||
WebsiteHyperlink->SetLabel (L"www.idrix.fr");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user