Mercurial > pidgin
changeset 22991:2a79e13aef44
merge of '4981895b0b7aadf94bcca49e105176b49f71d50d'
and '6126637fa90f27a38f1df1bb798f333ee3311849'
author | Sadrul Habib Chowdhury <imadil@gmail.com> |
---|---|
date | Sat, 17 May 2008 16:42:41 +0000 |
parents | 307bab4c9e63 (diff) 3bb677b57e4b (current diff) |
children | fe53a8edc014 |
files | |
diffstat | 3 files changed, 7 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/finch/gntlog.c Sat May 17 13:40:56 2008 +0000 +++ b/finch/gntlog.c Sat May 17 16:42:41 2008 +0000 @@ -302,7 +302,7 @@ /* Label ************/ text = g_strdup_printf("%s", title); - lv->label = gnt_label_new(text); + lv->label = gnt_label_new_with_format(text, GNT_TEXT_FLAG_BOLD); g_free(text); gnt_box_add_widget(GNT_BOX(vbox), lv->label);
--- a/finch/libgnt/wms/irssi.c Sat May 17 13:40:56 2008 +0000 +++ b/finch/libgnt/wms/irssi.c Sat May 17 16:42:41 2008 +0000 @@ -1,8 +1,8 @@ /** * 1. Buddylist is aligned on the left. * 2. The rest of the screen is split into MxN grid for conversation windows. - * - M = irssi-split-h in ~/.gntrc:[general] - * - N = irssi-split-v in ~/.gntrc:[general] + * - M = split-h in ~/.gntrc:[irssi] + * - N = split-v in ~/.gntrc:[irssi] * - Press alt-shift-k/j/l/h to move the selected window to the frame * above/below/left/right of the current frame. * 3. All the other windows are always centered. @@ -52,7 +52,8 @@ rx = irssi->buddylistwidth; if (hor) rx += hor * width; - rx++; + if (rx) + rx++; ry = 0; if (vert)
--- a/pidgin/gtkprefs.c Sat May 17 13:40:56 2008 +0000 +++ b/pidgin/gtkprefs.c Sat May 17 16:42:41 2008 +0000 @@ -879,9 +879,6 @@ */ if(!changed) purple_debug_warning("gtkprefs", "Escape accel failed to change\n"); - - /* TODO: create pidgin_accels_schedule_save */ - pidgin_save_accels_cb(NULL, 0, 0, NULL, NULL); } @@ -919,8 +916,8 @@ escape_closes_conversation_cb_id = g_signal_connect(checkbox, "clicked", G_CALLBACK(escape_closes_conversation_cb), NULL); - g_signal_connect(map, "changed::" CONVERSATION_CLOSE_ACCEL_PATH, - G_CALLBACK(conversation_close_accel_changed_cb), checkbox); + g_signal_connect_object(map, "changed::" CONVERSATION_CLOSE_ACCEL_PATH, + G_CALLBACK(conversation_close_accel_changed_cb), checkbox, (GConnectFlags)0); gtk_box_pack_start(GTK_BOX(vbox), checkbox, FALSE, FALSE, 0); }