From cc836903bd9b27f8a57ba74fda05ecb5d84ad077 Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Thu, 11 Jan 2018 14:01:46 -0800 Subject: [PATCH] Disable live resizing for wxAUI as it glitchy Fixes: lp:1695897 * https://bugs.launchpad.net/kicad/+bug/1695897 --- common/draw_frame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/draw_frame.cpp b/common/draw_frame.cpp index bd9342155a..136532522f 100644 --- a/common/draw_frame.cpp +++ b/common/draw_frame.cpp @@ -166,7 +166,7 @@ EDA_DRAW_FRAME::EDA_DRAW_FRAME( KIWAY* aKiway, wxWindow* aParent, m_movingCursorWithKeyboard = false; m_zoomLevelCoeff = 1.0; - m_auimgr.SetFlags(wxAUI_MGR_DEFAULT|wxAUI_MGR_LIVE_RESIZE); + m_auimgr.SetFlags(wxAUI_MGR_DEFAULT); CreateStatusBar( 6 );