pcbnew: Ensure save dialog with zones
Fixes: lp:1833748
* https://bugs.launchpad.net/kicad/+bug/1833748
(cherry picked from commit febc8cd6aa
)
This commit is contained in:
parent
c8c318510e
commit
1ece1172c5
|
@ -275,7 +275,8 @@ public:
|
||||||
|
|
||||||
bool IsEmpty() const
|
bool IsEmpty() const
|
||||||
{
|
{
|
||||||
return m_drawings.empty() && m_modules.empty() && m_tracks.empty();
|
return m_drawings.empty() && m_modules.empty() && m_tracks.empty() &&
|
||||||
|
m_ZoneDescriptorList.empty();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Move( const wxPoint& aMoveVector ) override;
|
void Move( const wxPoint& aMoveVector ) override;
|
||||||
|
|
Loading…
Reference in New Issue