From d3f57fac5a81191ca1bcc3eea30753c53415d881 Mon Sep 17 00:00:00 2001
From: Jeff Young <jeff@rokeby.ie>
Date: Thu, 20 Mar 2025 09:43:59 +0000
Subject: [PATCH] Must assign extension to keep from stripping last '.'
 section.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/20065
---
 pcbnew/dialogs/dialog_plot.cpp | 3 +--
 pcbnew/pcb_plotter.cpp         | 2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/pcbnew/dialogs/dialog_plot.cpp b/pcbnew/dialogs/dialog_plot.cpp
index 145233c18f..d0fe8934d0 100644
--- a/pcbnew/dialogs/dialog_plot.cpp
+++ b/pcbnew/dialogs/dialog_plot.cpp
@@ -1334,8 +1334,7 @@ void DIALOG_PLOT::Plot( wxCommandEvent& event )
             for( size_t i = 0; i < count; i++ )
             {
                 int          index = plotOnAllLayers.Item( i );
-                PCB_LAYER_ID client_layer =
-                        getLayerClientData( m_plotAllLayersList, index )->Layer();
+                PCB_LAYER_ID client_layer = getLayerClientData( m_plotAllLayersList, index )->Layer();
 
                 commonLayers.push_back( client_layer );
             }
diff --git a/pcbnew/pcb_plotter.cpp b/pcbnew/pcb_plotter.cpp
index bb801a411b..1142567bc2 100644
--- a/pcbnew/pcb_plotter.cpp
+++ b/pcbnew/pcb_plotter.cpp
@@ -146,7 +146,7 @@ bool PCB_PLOTTER::Plot( const wxString& aOutputPath,
         else
         {
             wxFileName brdFn = m_board->GetFileName();
-            fn.Assign( aOutputPath, brdFn.GetName() );
+            fn.Assign( aOutputPath, brdFn.GetName(), fileExt );
 
             // Use Gerber Extensions based on layer number
             // (See http://en.wikipedia.org/wiki/Gerber_File)