1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-02 16:48:55 +00:00

Fix incorrect format specifier for bool in Wayland libdecor

This commit is contained in:
LanzaSchneider
2025-11-29 10:20:27 +08:00
parent 7ed0b61676
commit 3a965d50fe

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);
}
}