1
0
mirror of https://github.com/rad4day/Waybar.git synced 2023-12-21 10:22:59 +01:00

Fix wlr/taskbar all-outputs config string

This commit is contained in:
Daniel De Graaf 2020-08-05 20:35:41 -04:00
parent 6a2d214b55
commit 4cd31cf3c3

@ -709,7 +709,7 @@ bool Taskbar::show_output(struct wl_output *output) const
bool Taskbar::all_outputs() const
{
static bool result = config_["all_outputs"].isBool() ? config_["all_outputs"].asBool() : false;
static bool result = config_["all-outputs"].isBool() ? config_["all-outputs"].asBool() : false;
return result;
}