PCB_RENDER_SETTINGS: added SetZoneDisplayMode() method

This commit is contained in:
Tomasz Wlostowski 2020-09-05 01:10:07 +02:00
parent aee06e46b0
commit 70beca164f
1 changed files with 3 additions and 1 deletions

View File

@ -29,7 +29,7 @@
#include <painter.h>
#include <pcb_display_options.h>
#include <math/vector2d.h>
#include <memory>
@ -184,6 +184,8 @@ public:
std::set<int>& GetHiddenNets() { return m_hiddenNets; }
const std::set<int>& GetHiddenNets() const { return m_hiddenNets; }
void SetZoneDisplayMode( ZONE_DISPLAY_MODE mode ) { m_zoneDisplayMode = mode; }
protected:
///> Flag determining if items on a given layer should be drawn as an outline or a filled item
bool m_sketchMode[GAL_LAYER_ID_END];