# HG changeset patch # User Sadrul Habib Chowdhury # Date 1193739856 0 # Node ID 5321f283365e222bdaaf058b7ed53c180866f356 # Parent 36377c25417d3969339e3cd1e8302574e3ba331b Pressing 'insert' in the plugins window triggers the 'Install Plugin..' button. diff -r 36377c25417d -r 5321f283365e finch/gntplugin.c --- a/finch/gntplugin.c Tue Oct 30 10:22:46 2007 +0000 +++ b/finch/gntplugin.c Tue Oct 30 10:24:16 2007 +0000 @@ -29,6 +29,7 @@ #include #include #include +#include #include "finch.h" @@ -399,6 +400,7 @@ button = gnt_button_new(_("Install Plugin...")); gnt_box_add_widget(GNT_BOX(box), button); + gnt_util_set_trigger_widget(GNT_WIDGET(tree), GNT_KEY_INS, button); g_signal_connect(G_OBJECT(button), "activate", G_CALLBACK(install_plugin_cb), NULL); button = gnt_button_new(_("Close"));