Fix update notification to use majorminorpatch

(cherry picked from commit 7933dee274)
This commit is contained in:
Marek Roszko 2024-03-04 20:13:15 -05:00 committed by Mark Roszko
parent fa2ccdd083
commit ec7abb7bff
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();