diff --git a/pcbnew/tools/point_editor.cpp b/pcbnew/tools/point_editor.cpp index e2c1d58e3f..bcd0971099 100644 --- a/pcbnew/tools/point_editor.cpp +++ b/pcbnew/tools/point_editor.cpp @@ -1,7 +1,7 @@ /* * This program source code file is part of KiCad, a free EDA CAD application. * - * Copyright (C) 2013-2018 CERN + * Copyright (C) 2013-2019 CERN * @author Maciej Suminski * * This program is free software; you can redistribute it and/or @@ -46,6 +46,7 @@ using namespace std::placeholders; #include #include #include +#include #include "zone_filler.h" @@ -638,6 +639,8 @@ void POINT_EDITOR::finishItem() if( zone->IsFilled() && m_refill ) { ZONE_FILLER filler( board() ); + WX_PROGRESS_REPORTER reporter( getEditFrame(), _( "Refill Zones" ), 4 ); + filler.SetProgressReporter( &reporter ); filler.Fill( { zone } ); } }