mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2026-01-30 04:40:47 -07:00
Fix: remove extra padding from GCode window (#11871)
This commit is contained in:
parent
779f4a890d
commit
0a9cab3991
1 changed files with 1 additions and 1 deletions
|
|
@ -683,7 +683,7 @@ void GCodeViewer::SequentialView::GCodeWindow::render(float top, float bottom, f
|
|||
max_text_width = w;
|
||||
}
|
||||
|
||||
required_width = id_width + max_text_width + 2.0f * ImGui::GetStyle().WindowPadding.x;
|
||||
required_width = id_width + max_text_width;
|
||||
}
|
||||
|
||||
ImGuiWrapper& imgui = *wxGetApp().imgui();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue