From be0935b339a2687532a1463c7f0b34c80e930ccd Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Fri, 2 Nov 2018 14:36:12 +0100 Subject: [PATCH] Eeschema: Update zoom/scale limits, due to recent change in GAL. Fixes: lp:1797995 https://bugs.launchpad.net/kicad/+bug/1797995 --- eeschema/sch_draw_panel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eeschema/sch_draw_panel.cpp b/eeschema/sch_draw_panel.cpp index f88c7e17ff..2935a7356d 100644 --- a/eeschema/sch_draw_panel.cpp +++ b/eeschema/sch_draw_panel.cpp @@ -76,7 +76,7 @@ SCH_DRAW_PANEL::SCH_DRAW_PANEL( wxWindow* aParentWindow, wxWindowID aWindowId, m_painter.reset( new KIGFX::SCH_PAINTER( m_gal ) ); m_view->SetPainter( m_painter.get() ); - m_view->SetScaleLimits( 2000.0, 1.0 ); // This fixes the zoom in and zoom out limits + m_view->SetScaleLimits( 50.0, 0.05 ); // This fixes the zoom in and zoom out limits m_view->SetMirror( false, false ); setDefaultLayerOrder();