On Sat, 30 Oct 2010 00:41:11 +0800 [email protected] wrote: > Try using Gtk::Table for laying out the widgets.
That's not going to help with this. Gtk::Label inherits from Gtk::Misc. The OP needs to call set_alignment(0, 0.5) on the label for left alignment. Gtk::Label::set_justify(Gtk::JUSTIFY_LEFT) will align multiple lines so they line up on their left side, but not shift out any spare space to the left. So to do what the OP wants, he should call both. Chris _______________________________________________ gtkmm-list mailing list [email protected] http://mail.gnome.org/mailman/listinfo/gtkmm-list
