| 117 | } |
| 118 | |
| 119 | void waybar::Client::handleMonitorAdded(Glib::RefPtr<Gdk::Monitor> monitor) { |
| 120 | auto& output = outputs_.emplace_back(); |
| 121 | output.monitor = std::move(monitor); |
| 122 | handleOutput(output); |
| 123 | } |
| 124 | |
| 125 | void waybar::Client::handleMonitorRemoved(Glib::RefPtr<Gdk::Monitor> monitor) { |
| 126 | spdlog::debug("Output removed: {} {}", monitor->get_manufacturer().c_str(), |
nothing calls this directly
no outgoing calls
no test coverage detected