GNOME Bugzilla – Bug 345837
ephy_find_toolbar_open not available for Python extensions
Last modified: 2006-06-25 20:29:11 UTC
Please describe the problem: The ephy_find_toolbar_open function (from ephy-find-toolbar.c) is not availabe for Python extensions. void ephy_find_toolbar_open (EphyFindToolbar *toolbar, gboolean links_only, gboolean typing_ahead) I need this function in an extension. I have tried to work around the problem by calling find_toolbar.show() and giving it the focus, but I can't find any way to set links_only and typing_ahead. Steps to reproduce: >>> find_toolbar = window.get_find_toolbar() >>> find_toolbar.open(True, True) Actual results: Traceback (most recent call last):
+ Trace 69038
r = eval(cmd, self.namespace, self.namespace)
Expected results: The find toolbar should open, with the chosen links_only and typing_ahead settings. Does this happen every time? Yes. Other information:
Thanks for the bug report ! Fixed on CVS HEAD and not on GNOME 2.14 branch because we're only one 2.14 GNOME release left. 2006-06-25 Jean-François Rameau <jframeau@cvs.gnome.org> * src/epiphany.defs: * src/epiphany.override: * src/Makefile.am: Add EphyFindToolbar type to Python binding. Nevertheless, the following patch applies smoothly to GNOME 2.14: http://perso.orange.fr/jf.rameau/patches/ephy-toolbar.diff