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
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}