From 7c960aa5fe276db2516912865a902cdbfb9b8963 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Tue, 16 Oct 2018 09:25:00 +0200 Subject: [PATCH] Eeschema: better limit for zoom out level 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 6e2b4edb71..929be3c3cf 100644 --- a/eeschema/sch_draw_panel.cpp +++ b/eeschema/sch_draw_panel.cpp @@ -84,7 +84,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, 0.002 ); + m_view->SetScaleLimits( 2000.0, 1.0 ); // This fixes the zoom in and zoom out limits m_view->SetMirror( false, false ); setDefaultLayerOrder();