From 7933dee274e8e19b63b85f75618713accf62e1a6 Mon Sep 17 00:00:00 2001 From: Marek Roszko Date: Mon, 4 Mar 2024 20:13:15 -0500 Subject: [PATCH] Fix update notification to use majorminorpatch --- kicad/dialogs/dialog_update_notice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kicad/dialogs/dialog_update_notice.cpp b/kicad/dialogs/dialog_update_notice.cpp index 03f2e982f6..5a10706228 100644 --- a/kicad/dialogs/dialog_update_notice.cpp +++ b/kicad/dialogs/dialog_update_notice.cpp @@ -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();