Re: Migrating away from GtkStock stuff

2019-02-07 Thread Emmanuele Bassi via gtk-app-devel-list
On Thu, 7 Feb 2019 at 13:30, Gabriele Greco wrote: > (test:77229): Gtk-WARNING **: 14:28:49.162: Could not find the icon > 'help-about'. The 'hicolor' theme > was not found either, perhaps you need to install it. > You can get a copy from: > http://icon-theme.freedesktop.org/releases > >

Re: Migrating away from GtkStock stuff

2019-02-07 Thread Gabriele Greco via gtk-app-devel-list
> > >> If you're using `edit-find` or `document-save` then you're using a named > icon from the icon theme, not the stock identifier. > > For those, you'll have to ship an icon theme like Adwaita. > That's really strange, it seems there is something in my gtk stack that converts GTK_STOCK_XXX to

Re: Migrating away from GtkStock stuff

2019-02-07 Thread Emmanuele Bassi via gtk-app-devel-list
On Thu, 7 Feb 2019 at 11:52, Gabriele Greco via gtk-app-devel-list < gtk-app-devel-list@gnome.org> wrote: > Hi guys, > > I'm in the process of migrating a big code base from GTK 2.x to GTK 3.x, > I've done most of the work, but I'm facing now some problems with GTK stock > stuff. > > I used stock

Migrating away from GtkStock stuff

2019-02-07 Thread Gabriele Greco via gtk-app-devel-list
Hi guys, I'm in the process of migrating a big code base from GTK 2.x to GTK 3.x, I've done most of the work, but I'm facing now some problems with GTK stock stuff. I used stock stuff a lot to reduce the localizable strings needed in my code and to reduce the number of images to ship. From what