Re: An alternative to gdk-pixbuf

2018-09-16 Thread Alan Coopersmith via gtk-devel-list
On 09/15/18 10:48 AM, John Emmas wrote: On 15/09/2018 12:07, Magnus Bergman wrote: Some mismatch in versions of libtiff could for example be a reason. Otherwise you should probably file a bug report with more information (perhaps to your distribution firstly). Do you happen to know if the

Re: An alternative to gdk-pixbuf

2018-09-16 Thread John Emmas
On 16/09/2018 11:18, Emmanuele Bassi wrote: The correct way to report issues for gdk-pixbuf: 1. use the issue tracker: https://gitlab.gnome.org/GNOME/gdk-pixbuf/issues/new Thanks Emmanuele - done! ___ gtk-devel-list mailing list

Re: An alternative to gdk-pixbuf

2018-09-16 Thread Emmanuele Bassi via gtk-devel-list
On Sun, 16 Sep 2018 at 10:47, John Emmas wrote: > On 15/09/2018 18:48, John Emmas wrote: > > > > Do you happen to know if the tiff library has its own mailing list? I > > haven't had much success in finding one > > > > In fact I'll need the mailing list for gdk-pixbuf now - except that I >

Re: An alternative to gdk-pixbuf

2018-09-16 Thread John Emmas
On 15/09/2018 18:48, John Emmas wrote: Thanks Magnus. I've a feeling that the problem might come down to struct alignment. No, I was wrong about that. I've tracked the problem to commit #ce52cefbbc in gdk-pixbuf (which brings me to the 2nd problem...) On 15/09/2018 18:48, John Emmas

Re: How to get GtkNotebook tab padding?

2018-09-16 Thread David C. Rankin
On 09/12/2018 01:58 PM, Game On via gtk-app-devel-list wrote: > Hi,What's the correct way to get the tab padding of a GtkNotebook widget?  > It's easy enough to set them, but I'm not sure how to get those values back? > My custom gtk.css file with:notebook tab {    padding: 20px 20px 20px 20px; >

Re: Howto register/unregister words completion provider on buffer change in textview?

2018-09-16 Thread David C. Rankin
On 09/16/2018 03:21 AM, David C. Rankin wrote: > Each treemodel entry has a struct containing a pointer to its > GtkSourceCompletionWords provider. Uugh... That should read the editor instance struct associated with the sourceview has a pointer to its GtkSourceCompletionWords provider. (the

Howto register/unregister words completion provider on buffer change in textview?

2018-09-16 Thread David C. Rankin
All, I have an editor that holds the open files on the left in a treeview/treemodel and displays the buffer containing each file in a textview (sourceview) window on the right. Each treemodel entry has a struct containing a pointer to its GtkSourceCompletionWords provider. The