From ab3b54015ac553b84ca9210967396c7f80eebba5 Mon Sep 17 00:00:00 2001 From: Nicolas Arnaud-Cormos Date: Mon, 2 Sep 2024 16:53:50 +0200 Subject: [PATCH] fix: Fix wrong value for wordwrap during RC to UI conversion --- src/rccore/rc_convert.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rccore/rc_convert.cpp b/src/rccore/rc_convert.cpp index 7f77eb24..1fc7da85 100644 --- a/src/rccore/rc_convert.cpp +++ b/src/rccore/rc_convert.cpp @@ -276,7 +276,7 @@ static Widget convertLabel(const Data &data, Data::Control &control, bool useIdF } if (control.styles.removeOne("SS_LEFTNOWORDWRAP")) - widget.properties["wordWrap"] = true; + widget.properties["wordWrap"] = false; control.styles.removeOne("SS_LEFT"); convertStyles(data, widget, control, true);