# HG changeset patch # User Sadrul Habib Chowdhury # Date 1190510868 0 # Node ID c905f5824422b53d0b70390399e448551d7ada62 # Parent 53545dbfd38fdd5f0ec2e5e7941e70b1a3bd3c09# Parent 54ff514fdd049dbb9dc9bd84db038fcdf789822a merge of '45c21fe8414cc05dba5ae7500e19b9e06c78e283' and '78194cd942a5fcb3f4eb41f3cdb4c7a5fb5b2b67' diff -r 53545dbfd38f -r c905f5824422 ChangeLog --- a/ChangeLog Sat Sep 22 20:42:40 2007 +0000 +++ b/ChangeLog Sun Sep 23 01:27:48 2007 +0000 @@ -36,6 +36,10 @@ * You should no longer lose proxy settings when Pidgin is restarted. * ICQ Birthday notifications are shown as buddy list emblems + Finch: + * Pressing 'Insert' in the buddylist will bring up the 'Add Buddy' + dialog. + Version 2.2.0 (09/13/2007): http://developer.pidgin.im/query?status=closed&milestone=2.2.0 diff -r 53545dbfd38f -r c905f5824422 finch/gntblist.c --- a/finch/gntblist.c Sat Sep 22 20:42:40 2007 +0000 +++ b/finch/gntblist.c Sun Sep 23 01:27:48 2007 +0000 @@ -1510,6 +1510,8 @@ } else if (strcmp(text, GNT_KEY_CTRL_O) == 0) { purple_prefs_set_bool(PREF_ROOT "/showoffline", !purple_prefs_get_bool(PREF_ROOT "/showoffline")); + } else if (strcmp(text, GNT_KEY_INS) == 0) { + purple_blist_request_add_buddy(NULL, NULL, NULL, NULL); } else if (!gnt_tree_is_searching(GNT_TREE(ggblist->tree))) { if (strcmp(text, "t") == 0) { finch_blist_toggle_tag_buddy(gnt_tree_get_selection_data(GNT_TREE(ggblist->tree)));