Don't try and be too smart about scaling and worksheets.

Fixes: lp:1815586
* https://bugs.launchpad.net/kicad/+bug/1815586
This commit is contained in:
Jeff Young 2019-08-14 11:35:23 +01:00
parent 3cdf88f2c6
commit fb0fd825ba
1 changed files with 1 additions and 7 deletions

View File

@ -49,14 +49,8 @@ struct PRINTOUT_SETTINGS
/**
* Returns true if the drawing border and title block should be printed.
*
* For scale factors greater than one, the border is not printed because it will end up
* scaling off of the page.
*/
bool PrintBorderAndTitleBlock() const
{
return m_scale <= 1.0 && m_titleBlock;
}
bool PrintBorderAndTitleBlock() const { return m_titleBlock; }
};
#endif /* PRINTOUT_H */