# HG changeset patch # User Sadrul Habib Chowdhury # Date 1151181138 0 # Node ID cf6f32628f8f0962cb48cfe25a7587e4f42d5ad2 # Parent d78ab363e02da2dacfd0534b65e2dc5e28cf81a4 [gaim-migrate @ 16332] No need to redraw a widget if the focus didn't change. committer: Tailor Script diff -r d78ab363e02d -r cf6f32628f8f console/libgnt/gntbox.c --- a/console/libgnt/gntbox.c Sat Jun 24 20:06:37 2006 +0000 +++ b/console/libgnt/gntbox.c Sat Jun 24 20:32:18 2006 +0000 @@ -202,7 +202,7 @@ now = box->list; } - if (now) + if (now && now != box->active) { gnt_widget_set_focus(box->active->data, FALSE); box->active = now;