mirror of
https://github.com/rad4day/Waybar.git
synced 2025-07-20 01:42:38 +02:00
Merge pull request #442 from xPMo/master
sway/mode: enable pango markup on supported modes
This commit is contained in:
@@ -17,7 +17,11 @@ void Mode::onEvent(const struct Ipc::ipc_response& res) {
|
||||
std::lock_guard<std::mutex> lock(mutex_);
|
||||
auto payload = parser_.parse(res.payload);
|
||||
if (payload["change"] != "default") {
|
||||
mode_ = Glib::Markup::escape_text(payload["change"].asString());
|
||||
if (payload["pango_markup"].asBool()) {
|
||||
mode_ = payload["change"].asString();
|
||||
} else {
|
||||
mode_ = Glib::Markup::escape_text(payload["change"].asString());
|
||||
}
|
||||
} else {
|
||||
mode_.clear();
|
||||
}
|
||||
|
Reference in New Issue
Block a user