Ensure gal is initialized before letting DoRepaint blowup spectacularly.
Maybe a fix for KICAD-6B
(cherry picked from commit 58350b4521
)
This commit is contained in:
parent
7e2ccbf909
commit
534000b49d
|
@ -212,7 +212,7 @@ void EDA_DRAW_PANEL_GAL::DoRePaint()
|
||||||
if( !m_drawingEnabled )
|
if( !m_drawingEnabled )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if( !m_gal->IsVisible() )
|
if( !m_gal->IsInitialized() || !m_gal->IsVisible() )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
m_pendingRefresh = false;
|
m_pendingRefresh = false;
|
||||||
|
|
Loading…
Reference in New Issue