# HG changeset patch # User nenolod # Date 1160016817 25200 # Node ID c9032deca2fd326bbe2b025497666197556ccaaa # Parent 4d2a5c9adc969b6d72aa1b8af930c270c61eaefb [svn] - silently ignore text updates if we're not visible (bugfix) diff -r 4d2a5c9adc96 -r c9032deca2fd ChangeLog --- a/ChangeLog Wed Oct 04 19:47:24 2006 -0700 +++ b/ChangeLog Wed Oct 04 19:53:37 2006 -0700 @@ -1,3 +1,11 @@ +2006-10-05 02:47:24 +0000 William Pitcock + revision [2545] + - this should be a continue not a return (oops) + + trunk/audacious/widgets/widget.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + + 2006-10-05 02:45:14 +0000 William Pitcock revision [2543] - do not draw widgets which are invisible (performance tweak) diff -r 4d2a5c9adc96 -r c9032deca2fd audacious/widgets/textbox.c --- a/audacious/widgets/textbox.c Wed Oct 04 19:47:24 2006 -0700 +++ b/audacious/widgets/textbox.c Wed Oct 04 19:53:37 2006 -0700 @@ -160,6 +160,7 @@ { g_return_if_fail(tb != NULL); g_return_if_fail(text != NULL); + g_return_if_fail(tb->tb_widget.visible == FALSE); widget_lock(WIDGET(tb));