File tree 1 file changed +10
-3
lines changed
1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change 9
9
10
10
#include " client.hpp"
11
11
#include " dwl-ipc-unstable-v2-client-protocol.h"
12
+ #include " glibmm/markup.h"
12
13
#include " util/rewrite_string.hpp"
13
14
14
15
namespace waybar ::modules::dwl {
@@ -97,11 +98,17 @@ Window::~Window() {
97
98
}
98
99
}
99
100
100
- void Window::handle_title (const char *title) { title_ = title; }
101
+ void Window::handle_title (const char *title) {
102
+ title_ = Glib::Markup::escape_text (title);
103
+ }
101
104
102
- void Window::handle_appid (const char *appid) { appid_ = appid; }
105
+ void Window::handle_appid (const char *appid) {
106
+ appid_ = Glib::Markup::escape_text (appid);
107
+ }
103
108
104
- void Window::handle_layout_symbol (const char *layout_symbol) { layout_symbol_ = layout_symbol; }
109
+ void Window::handle_layout_symbol (const char *layout_symbol) {
110
+ layout_symbol_ = Glib::Markup::escape_text (layout_symbol);
111
+ }
105
112
106
113
void Window::handle_layout (const uint32_t layout) { layout_ = layout; }
107
114
You can’t perform that action at this time.
0 commit comments