Skip to content

Commit

Permalink
fix: Fix wrong value for wordwrap during RC to UI conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
narnaud committed Sep 3, 2024
1 parent 4a4a73a commit ab3b540
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rccore/rc_convert.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit ab3b540

Please sign in to comment.