2018-04-02 17:07 GMT+02:00 Daniel Boles <dboles....@gmail.com>:

> I would start by seeing if the CellRendererText:wrap-* properties can
> help, if you haven't tried already:
> https://developer.gnome.org/gtk3/stable/GtkCellRendererText.html#
> GtkCellRendererText--wrap-mode
>
>
After these lines

    treeview.append_column ("Id", model_columns.id);
    treeview.append_column ("Message", model_columns.message);

I inserted

    if (Gtk::CellRendererText * c_message =
            dynamic_cast<Gtk::CellRendererText
*>(treeview.get_column_cell_renderer (1)))
        c_message->property_wrap_mode() = Pango::WRAP_WORD_CHAR;

and it doesn't run ...



> _______________________________________________
> gtkmm-list mailing list
> gtkmm-list@gnome.org
> https://mail.gnome.org/mailman/listinfo/gtkmm-list
>
>
_______________________________________________
gtkmm-list mailing list
gtkmm-list@gnome.org
https://mail.gnome.org/mailman/listinfo/gtkmm-list

Reply via email to