Forcing minimum size in ContactPane.

This will prevent the ContactList from expanding
horizontally, when some contact has a name or a status
too large.
This commit is contained in:
Erick Pérez Castellanos 2013-02-17 13:30:31 -05:00
parent 58753d32b5
commit c78415b1e1

View file

@ -489,6 +489,7 @@ public class Contacts.ContactPane : Notebook {
no_selection_frame = new Frame (null);
no_selection_frame.get_style_context ().add_class ("contacts-content");
no_selection_frame.set_size_request (500, -1);
var box = new Grid ();
box.set_orientation (Orientation.VERTICAL);