From ad510eb76849559cb86bc2ecf71333c1c2c00a46 Mon Sep 17 00:00:00 2001 From: Michael Carlberg Date: Tue, 22 Nov 2016 23:31:05 +0100 Subject: [PATCH] fix(builder): Default to non-lazy mode Ref #181 --- include/components/builder.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/components/builder.hpp b/include/components/builder.hpp index c64c094c..0c03505d 100644 --- a/include/components/builder.hpp +++ b/include/components/builder.hpp @@ -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);