From: <sa...@us...> - 2006-06-24 20:32:23
|
Revision: 16332 Author: sadrul Date: 2006-06-24 13:32:18 -0700 (Sat, 24 Jun 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16332&view=rev Log Message: ----------- No need to redraw a widget if the focus didn't change. Modified Paths: -------------- trunk/console/libgnt/gntbox.c Modified: trunk/console/libgnt/gntbox.c =================================================================== --- trunk/console/libgnt/gntbox.c 2006-06-24 20:06:37 UTC (rev 16331) +++ trunk/console/libgnt/gntbox.c 2006-06-24 20:32:18 UTC (rev 16332) @@ -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; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |