auto widget=gtk_label_new(text);
m_handle=GTK_LABEL(widget);
gtk_label_set_line_wrap(m_handle,TRUE);
gtk_label_set_max_width_chars(m_handle,80);
gtk_widget_set_size_request(GTK_WIDGET(m_handle),-1,1);
And, the label wraps but GTK thinks the widget require the height equal to line break after every word. And no, I cannot shrink the window manually. How to restore its height?
