mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
#1591 river escape window and mode
This commit is contained in:
parent
fd24d7bcf6
commit
5f2dd99e6d
@ -103,7 +103,7 @@ void Mode::handle_mode(const char *mode) {
|
||||
}
|
||||
|
||||
label_.get_style_context()->add_class(mode);
|
||||
label_.set_markup(fmt::format(format_, mode));
|
||||
label_.set_markup(fmt::format(format_, Glib::Markup::escape_text(mode).raw()));
|
||||
label_.show();
|
||||
}
|
||||
|
||||
|
@ -106,7 +106,7 @@ void Window::handle_focused_view(const char *title) {
|
||||
label_.hide(); // hide empty labels or labels with empty format
|
||||
} else {
|
||||
label_.show();
|
||||
label_.set_markup(fmt::format(format_, title));
|
||||
label_.set_markup(fmt::format(format_, Glib::Markup::escape_text(title).raw()));
|
||||
}
|
||||
|
||||
ALabel::update();
|
||||
|
Loading…
Reference in New Issue
Block a user