Workaround for Bug 701058? [Was: style_get_property giving wrong answer?]

2013-07-04 Thread Conscious User
Sorry for not replying, I didn't notice this email. Yeah, I meant Python and gtk_widget_style_get_property. Do you know if there's any way I can work around this bug and get the style properties in Python without waiting for the fix? I've recently upgraded to Fedora 19 and it's even worse here (

Re: gtk_print_operation_run() blocks and ignores callback

2013-07-04 Thread Tristan Van Berkom
On Thu, Jul 4, 2013 at 9:22 PM, Satz Klauer wrote: > I want to print out some vectordata using GTK/Linux. That's what I already > have: > > > GtkPrintOperation *op; > > op = gtk_print_operation_new(); > gtk_print_operation_set_n_pages(op, 1); > gtk_print_operation_set_unit (op,GTK_UNIT_POINTS); >

gtk_print_operation_run() blocks and ignores callback

2013-07-04 Thread Satz Klauer
I want to print out some vectordata using GTK/Linux. That's what I already have: GtkPrintOperation *op; op = gtk_print_operation_new(); gtk_print_operation_set_n_pages(op, 1); gtk_print_operation_set_unit (op,GTK_UNIT_POINTS); g_signal_connect (op, "draw_page", G_CALLBACK(draw_page), NULL); if (