mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
dont escape essid in tooltip
just like https://github.com/Alexays/Waybar/pull/834 but for the network name.
This commit is contained in:
parent
8534175c59
commit
8d04da1551
@ -342,7 +342,7 @@ auto waybar::modules::Network::update() -> void {
|
||||
|
||||
auto text = fmt::format(
|
||||
format_,
|
||||
fmt::arg("essid", essid_),
|
||||
fmt::arg("essid", Glib::Markup::escape_text(essid_)),
|
||||
fmt::arg("signaldBm", signal_strength_dbm_),
|
||||
fmt::arg("signalStrength", signal_strength_),
|
||||
fmt::arg("ifname", ifname_),
|
||||
@ -793,7 +793,7 @@ void waybar::modules::Network::parseEssid(struct nlattr **bss) {
|
||||
auto essid_end = essid_begin + ies[1];
|
||||
std::string essid_raw;
|
||||
std::copy(essid_begin, essid_end, std::back_inserter(essid_raw));
|
||||
essid_ = Glib::Markup::escape_text(essid_raw);
|
||||
essid_ = essid_raw;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user