From d68633f24f55e4fbf2948d1a866ab2cedbdf9ba3 Mon Sep 17 00:00:00 2001 From: gucio321 Date: Fri, 22 Mar 2024 09:16:36 +0100 Subject: [PATCH] label: use TextUnformatted see https://github.com/AllenDang/giu/issues/781 Because Text has some limitation (no idea why) --- TextWidgets.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TextWidgets.go b/TextWidgets.go index 4053eba2..13eff3f0 100644 --- a/TextWidgets.go +++ b/TextWidgets.go @@ -538,5 +538,5 @@ func (l *LabelWidget) Build() { } } - imgui.Text(l.label) + imgui.TextUnformatted(l.label) }