refactor: disable icon by default

pull/1476/head
Alex 2022-03-10 09:48:50 +01:00 committed by GitHub
parent 1aa7587cac
commit 77d8376fef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ auto AIconLabel::update() -> void {
} }
bool AIconLabel::iconEnabled() const { bool AIconLabel::iconEnabled() const {
return config_["icon"].isBool() ? config_["icon"].asBool() : true; return config_["icon"].isBool() ? config_["icon"].asBool() : false;
} }
} // namespace waybar } // namespace waybar