Merge pull request #113302 from LanzaSchneider/fix-wayland-logging-invalid-format

LinuxBSD: Fixes a formatting error when running Godot editor with Wayland prefer enabled.
This commit is contained in:
Rémi Verschelde 2025-12-01 11:50:02 +01:00
commit 4d072556ef
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -4330,7 +4330,7 @@ void WaylandThread::window_set_borderless(DisplayServer::WindowID p_window_id, b
// possible to destroy the frame more than once, by setting the visibility
// to false multiple times and thus crashing.
if (visible_current != visible_target) {
print_verbose(vformat("Setting libdecor frame visibility to %d", visible_target));
print_verbose(vformat("Setting libdecor frame visibility to %s", visible_target));
libdecor_frame_set_visibility(ws.libdecor_frame, visible_target);
}
}