Merge pull request #1668 from alex-courtis/1591-river-escape-window-and-mode

This commit is contained in:
Alex 2022-08-29 08:26:40 +02:00 committed by GitHub
commit 330d166c82
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ void Mode::handle_mode(const char *mode) {
} }
label_.get_style_context()->add_class(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(); label_.show();
} }

View File

@ -106,7 +106,7 @@ void Window::handle_focused_view(const char *title) {
label_.hide(); // hide empty labels or labels with empty format label_.hide(); // hide empty labels or labels with empty format
} else { } else {
label_.show(); label_.show();
label_.set_markup(fmt::format(format_, title)); label_.set_markup(fmt::format(format_, Glib::Markup::escape_text(title).raw()));
} }
ALabel::update(); ALabel::update();