Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(lww): label measuring when pango wrap is word_char #1172

Merged
merged 1 commit into from
Oct 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/Widgets/LabelWithWidgets.vala
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public class Tuba.Widgets.LabelWithWidgets : Gtk.Widget, Gtk.Buildable, Gtk.Acce
construct {
label = new Gtk.Label ("") {
wrap = true,
wrap_mode = Pango.WrapMode.WORD_CHAR,
wrap_mode = Pango.WrapMode.WORD,
xalign = 0.0f,
valign = Gtk.Align.START,
use_markup = false,
Expand Down Expand Up @@ -246,7 +246,7 @@ public class Tuba.Widgets.LabelWithWidgets : Gtk.Widget, Gtk.Buildable, Gtk.Acce

if (old_label != new_label) {
label.wrap = true;
label.wrap_mode = Pango.WrapMode.WORD_CHAR;
label.wrap_mode = Pango.WrapMode.WORD;

_text = new_label;
label.label = _text;
Expand Down
Loading