Skip to content

Commit 6585381

Browse files
committed
fix(client): remove unnecessary wl_output_roundtrip
At this point we're not awaiting any protocol events and flushing wayland queue makes little sense. As Alexays#1019 shows, it may be even harmful as an extra roundtrip could process wl_output disappearance and delete output object right from under our code.
1 parent f3ce7ff commit 6585381

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/client.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ void waybar::Client::handleOutputDone(void *data, struct zxdg_output_v1 * /*xdg_
124124

125125
auto configs = client->getOutputConfigs(output);
126126
if (!configs.empty()) {
127-
wl_display_roundtrip(client->wl_display);
128127
for (const auto &config : configs) {
129128
client->bars.emplace_back(std::make_unique<Bar>(&output, config));
130129
}

0 commit comments

Comments
 (0)