From a991625f5610fbaec32b4776f621f523ffcc7e4f Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sat, 6 Jul 2019 22:37:09 +0100 Subject: [PATCH] Don't refill zone from external change. We may later add an Automatic Zone Fill option which would restore this, but for now I'm turning it off to see if it fixes the crash bug. Fixes: lp:1834718 * https://bugs.launchpad.net/kicad/+bug/1834718 --- pcbnew/tools/point_editor.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/pcbnew/tools/point_editor.cpp b/pcbnew/tools/point_editor.cpp index 6d26282c76..237930843d 100644 --- a/pcbnew/tools/point_editor.cpp +++ b/pcbnew/tools/point_editor.cpp @@ -1160,7 +1160,6 @@ int POINT_EDITOR::removeCorner( const TOOL_EVENT& aEvent ) int POINT_EDITOR::modifiedSelection( const TOOL_EVENT& aEvent ) { - m_refill = true; // zone has been modified outside the point editor tool updatePoints(); return 0; }