1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-11-11 13:50:56 -05:00

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

View file

@ -25,7 +25,7 @@ using namespace drawtypes;
class builder { class builder {
public: 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); void set_lazy(bool mode);