Commit 91e9df59 authored by Maciej Suminski's avatar Maciej Suminski

Fixed layers order after changing the active layer.

parent f45836bf
...@@ -243,7 +243,7 @@ void EDA_DRAW_PANEL_GAL::StopDrawing() ...@@ -243,7 +243,7 @@ void EDA_DRAW_PANEL_GAL::StopDrawing()
} }
void EDA_DRAW_PANEL_GAL::SetHighContrastLayer( LAYER_NUM aLayer ) void EDA_DRAW_PANEL_GAL::SetHighContrastLayer( LAYER_ID aLayer )
{ {
// Set display settings for high contrast mode // Set display settings for high contrast mode
KIGFX::RENDER_SETTINGS* rSettings = m_view->GetPainter()->GetSettings(); KIGFX::RENDER_SETTINGS* rSettings = m_view->GetPainter()->GetSettings();
...@@ -257,7 +257,7 @@ void EDA_DRAW_PANEL_GAL::SetHighContrastLayer( LAYER_NUM aLayer ) ...@@ -257,7 +257,7 @@ void EDA_DRAW_PANEL_GAL::SetHighContrastLayer( LAYER_NUM aLayer )
} }
void EDA_DRAW_PANEL_GAL::SetTopLayer( LAYER_NUM aLayer ) void EDA_DRAW_PANEL_GAL::SetTopLayer( LAYER_ID aLayer )
{ {
m_view->ClearTopLayers(); m_view->ClearTopLayers();
m_view->SetTopLayer( aLayer ); m_view->SetTopLayer( aLayer );
......
...@@ -136,13 +136,13 @@ public: ...@@ -136,13 +136,13 @@ public:
* Function SetHighContrastLayer * Function SetHighContrastLayer
* Takes care of display settings for the given layer to be displayed in high contrast mode. * Takes care of display settings for the given layer to be displayed in high contrast mode.
*/ */
virtual void SetHighContrastLayer( LAYER_NUM aLayer ); virtual void SetHighContrastLayer( LAYER_ID aLayer );
/** /**
* Function SetTopLayer * Function SetTopLayer
* Moves the selected layer to the top, so it is displayed above all others. * Moves the selected layer to the top, so it is displayed above all others.
*/ */
virtual void SetTopLayer( LAYER_NUM aLayer ); virtual void SetTopLayer( LAYER_ID aLayer );
protected: protected:
void onPaint( wxPaintEvent& WXUNUSED( aEvent ) ); void onPaint( wxPaintEvent& WXUNUSED( aEvent ) );
......
...@@ -508,7 +508,7 @@ public: ...@@ -508,7 +508,7 @@ public:
const BOX2I CalculateExtents() ; const BOX2I CalculateExtents() ;
static const int VIEW_MAX_LAYERS = 128; ///< maximum number of layers that may be shown static const int VIEW_MAX_LAYERS = 256; ///< maximum number of layers that may be shown
private: private:
struct VIEW_LAYER struct VIEW_LAYER
......
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