fix(builder): Default to non-lazy mode

Ref #181
This commit is contained in:
Michael Carlberg 2016-11-22 23:31:05 +01:00
parent 4794ef653c
commit ad510eb768
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ using namespace drawtypes;
class builder {
public:
explicit builder(const bar_settings bar, bool lazy = true) : m_bar(bar), m_lazy(lazy) {}
explicit builder(const bar_settings bar, bool lazy = false) : m_bar(bar), m_lazy(lazy) {}
void set_lazy(bool mode);