I keep getting the following error whenever a calltip is opened: (SciTE:26067): Gdk-CRITICAL **: gdk_window_resize: assertion `GDK_IS_WINDOW (window)' failed
There were change made to calltips a while back by Neil, see: http://mailman.lyra.org/pipermail/scintilla-interest/2003-April/002555.html The changes were (among other things): gtk_widget_set_usize(PWidget(ct.wCallTip), rc.Width(), rc.Height()); // to gdk_window_resize(PWidget(ct.wCallTip)->window, rc.Width(), rc.Height()); Note that on GTK2, "PWidget(ct.wCallTip)->window" is NULL, so this line does not do anything at all, you can actually remove it (or use the gtk_widget_set_usize) and calltips will still work fine. I am not a GTK guru, so does anyone have suggestions on this? Cheers, Todd _______________________________________________ Scintilla-interest mailing list [email protected] http://mailman.lyra.org/mailman/listinfo/scintilla-interest
