From 90e2c8dd7f2aa31b74fb24fce0a4b96b6e93d581 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sun, 4 Mar 2018 22:53:45 +0000 Subject: [PATCH] Get rid of first-scroll jerkiness in eeschema. --- common/draw_panel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/draw_panel.cpp b/common/draw_panel.cpp index 4e24b652d8..02b5d4541d 100644 --- a/common/draw_panel.cpp +++ b/common/draw_panel.cpp @@ -99,7 +99,7 @@ END_EVENT_TABLE() EDA_DRAW_PANEL::EDA_DRAW_PANEL( EDA_DRAW_FRAME* parent, int id, const wxPoint& pos, const wxSize& size ) : - wxScrolledWindow( parent, id, pos, size, wxBORDER | wxHSCROLL | wxVSCROLL ) + wxScrolledWindow( parent, id, pos, size, wxBORDER | wxHSCROLL | wxVSCROLL | wxALWAYS_SHOW_SB ) { wxASSERT( parent );