Commit 748a2051 authored by jean-pierre charras's avatar jean-pierre charras

Gebview: fixed a very minor bug

parent cdf111d6
...@@ -233,27 +233,15 @@ void GERBER_DRAW_ITEM::Draw( WinEDA_DrawPanel* panel, wxDC* DC, int draw_mode, ...@@ -233,27 +233,15 @@ void GERBER_DRAW_ITEM::Draw( WinEDA_DrawPanel* panel, wxDC* DC, int draw_mode,
halfPenWidth = m_Size.x >> 1; halfPenWidth = m_Size.x >> 1;
if( isFilled == SKETCH ) if( !isFilled )
{ {
// draw the border of the pen's path using two circles, each as narrow as possible // draw the border of the pen's path using two circles, each as narrow as possible
#ifdef USE_WX_ZOOM GRCircle( &panel->m_ClipBox, DC, m_Start.x, m_Start.y,
if( DC->LogicalToDeviceXRel( halfPenWidth ) < L_MIN_DESSIN ) radius - halfPenWidth, 0, color );
#else GRCircle( &panel->m_ClipBox, DC, m_Start.x, m_Start.y,
if( panel->GetScreen()->Scale( halfPenWidth ) < L_MIN_DESSIN ) radius + halfPenWidth, 0, color );
#endif
{
GRCircle( &panel->m_ClipBox, DC, m_Start.x,
m_Start.y, radius, 0, color );
}
else
{
GRCircle( &panel->m_ClipBox, DC, m_Start.x, m_Start.y,
radius - halfPenWidth, 0, color );
GRCircle( &panel->m_ClipBox, DC, m_Start.x, m_Start.y,
radius + halfPenWidth, 0, color );
}
} }
else else // Filled mode
{ {
GRCircle( &panel->m_ClipBox, DC, m_Start.x, m_Start.y, GRCircle( &panel->m_ClipBox, DC, m_Start.x, m_Start.y,
radius, m_Size.x, color ); radius, m_Size.x, color );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment