From a039391131fc6cecbfbca406bd3a2627b93814cc Mon Sep 17 00:00:00 2001 From: Lukas Matena Date: Thu, 4 May 2023 13:56:05 +0200 Subject: [PATCH] Fixed rendering of horizontal ellipsis in ImGui controls --- src/slic3r/GUI/ImGuiWrapper.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/slic3r/GUI/ImGuiWrapper.cpp b/src/slic3r/GUI/ImGuiWrapper.cpp index 0754c35cc..f2e6b0287 100644 --- a/src/slic3r/GUI/ImGuiWrapper.cpp +++ b/src/slic3r/GUI/ImGuiWrapper.cpp @@ -1620,6 +1620,8 @@ void ImGuiWrapper::init_font(bool compress) ImFontGlyphRangesBuilder builder; builder.AddRanges(m_glyph_ranges); + builder.AddChar(ImWchar(0x2026)); // … + if (m_font_cjk) { // This is a temporary fix of https://github.com/prusa3d/PrusaSlicer/issues/8171. The translation // contains characters not in the ImGui ranges for simplified Chinese. For now, just add them manually.