Re: Undeprecate GtkAlignment ?

2015-06-02 Thread salsaman
Yeah, I second that ! It's a very useful widget, it should be retained or replaced with something similar. Salsaman. http://lives-video.com https://www.openhub.net/accounts/salsaman On Mon, Jun 1, 2015 at 4:01 PM, Pierre Wieser wrote: > Hi all, > > I am the maintainer of Nautilus-Actions,

Re: Undeprecate GtkAlignment ?

2015-06-02 Thread Emmanuele Bassi
Hi; you probably wanted to use gtk-devel-list, not gtk-list. On 1 June 2015 at 20:01, Pierre Wieser wrote: > After having migrated my laptop to last Fedora 22, I notice that the > GtkAlignment widget has been deprecated (since Gtk 3.14 according to > the doc). As per usual: the widget may be d

Re: Undeprecate GtkAlignment ?

2015-06-02 Thread Emmanuele Bassi
Hi; On 2 June 2015 at 12:06, salsaman wrote: > Yeah, I second that ! It's a very useful widget, it should be retained or > replaced with something similar. It's replaced with "something similar": the alignment and expansion properties on GtkWidget. Instead of requiring a specific container, you

Re: Undeprecate GtkAlignment ?

2015-06-02 Thread salsaman
Thanks. What would be an example to center a widget horizontally and/or vertically in its container, without the center widget expanding ? Salsaman. http://lives-video.com https://www.openhub.net/accounts/salsaman On Tue, Jun 2, 2015 at 8:38 AM, Emmanuele Bassi wrote: > Hi; > > On 2 June 2

Re: Undeprecate GtkAlignment ?

2015-06-02 Thread Emmanuele Bassi
Hi; On 2 June 2015 at 13:02, salsaman wrote: > Thanks. What would be an example to center a widget horizontally and/or > vertically in its container, without the center widget expanding ? gtk_widget_set_halign (child, GTK_ALIGN_CENTER); gtk_widget_set_valign (child, GTK_ALIGN_CENTER); A simple