From 9604b0165667ac056696474ee475ed7f8f04d6ac Mon Sep 17 00:00:00 2001 From: yw4z Date: Mon, 9 Feb 2026 17:07:51 +0300 Subject: [PATCH] Fix: tool position window glitch on Linux (#12195) fill buffer --- src/slic3r/GUI/GCodeViewer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/slic3r/GUI/GCodeViewer.cpp b/src/slic3r/GUI/GCodeViewer.cpp index 706f069d8c..1d5d6b7883 100644 --- a/src/slic3r/GUI/GCodeViewer.cpp +++ b/src/slic3r/GUI/GCodeViewer.cpp @@ -600,6 +600,7 @@ void GCodeViewer::SequentialView::Marker::render_position_window(const libvgcode case libvgcode::EViewType::ActualVolumetricFlowRate: { // Don't display the actual flow, since it only gives data for the end of a segment // sprintf(buf, "%s %s%.2f", buf, _u8L("Actual Flow: ").c_str(), vertex.actual_volumetric_rate()); + sprintf(buf, "%s %s", buf, " "); break; } case libvgcode::EViewType::ActualSpeed: {