Fix update notification to use majorminorpatch

This commit is contained in:
Marek Roszko 2024-03-04 20:13:15 -05:00
parent 8cda72f8d5
commit 7933dee274
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ DIALOG_UPDATE_NOTICE::DIALOG_UPDATE_NOTICE( wxWindow* aWindow, const wxString& a
m_detailsUrl( aDetailsUrl ),
m_downloadsUrl( aDownloadsUrl )
{
wxString msg = wxString::Format( _( "KiCad %s is now available (you have %s). Would you like to download it now?" ), aNewVersion, GetMajorMinorVersion() );
wxString msg = wxString::Format( _( "KiCad %s is now available (you have %s). Would you like to download it now?" ), aNewVersion, GetMajorMinorPatchVersion() );
m_messageLine2->SetLabelText( msg );
Fit();