search for: fa8a7b0

Displaying 1 result from an estimated 1 matches for "fa8a7b0".

Did you mean: 8a5a7b0
2015 Oct 05
0
[PATCH] p2v: fix mode for gtk_label_set_line_wrap_mode
...e the label wrap mode: GTK_WRAP_WORD is 2, which corresponds (as int value) to PANGO_WRAP_WORD_CHAR. [1] https://developer.gnome.org/gtk2/stable/GtkLabel.html#gtk-label-set-line-wrap-mode --- p2v/gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2v/gui.c b/p2v/gui.c index fa8a7b0..8c6dc31 100644 --- a/p2v/gui.c +++ b/p2v/gui.c @@ -525,7 +525,7 @@ create_conversion_dialog (struct config *config) target_warning_label = gtk_label_new (""); gtk_label_set_line_wrap (GTK_LABEL (target_warning_label), TRUE); gtk_label_set_line_wrap_mode (GTK_LABEL (target_warnin...