From af3789571eab6e9609475ceed9075f667f273e87 Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Fri, 29 Jan 2021 15:33:19 -0800 Subject: [PATCH] Refresh screen after canvas switch Fixes https://gitlab.com/kicad/code/kicad/issues/7335 --- common/tool/common_tools.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/common/tool/common_tools.cpp b/common/tool/common_tools.cpp index 06d01bce58..fd612baea3 100644 --- a/common/tool/common_tools.cpp +++ b/common/tool/common_tools.cpp @@ -595,6 +595,7 @@ int COMMON_TOOLS::SwitchCanvas( const TOOL_EVENT& aEvent ) else wxFAIL_MSG( "Unknown canvas type" ); + m_frame->HardRedraw(); return 0; }