# HG changeset patch # User nenolod # Date 1160017832 25200 # Node ID 9e37de705efaf0efe4da4a5867859b957b291e8a # Parent 565e9c1f8d4f9536fe1134bd72fae44fd97304b2 [svn] - othertext visibility enforcement diff -r 565e9c1f8d4f -r 9e37de705efa ChangeLog --- a/ChangeLog Wed Oct 04 20:07:35 2006 -0700 +++ b/ChangeLog Wed Oct 04 20:10:32 2006 -0700 @@ -1,3 +1,11 @@ +2006-10-05 03:07:35 +0000 William Pitcock + revision [2553] + - more fix + + trunk/audacious/widgets/textbox.c | 1 + + 1 file changed, 1 insertion(+) + + 2006-10-05 03:05:42 +0000 William Pitcock revision [2551] - fix diff -r 565e9c1f8d4f -r 9e37de705efa audacious/mainwin.c --- a/audacious/mainwin.c Wed Oct 04 20:07:35 2006 -0700 +++ b/audacious/mainwin.c Wed Oct 04 20:10:32 2006 -0700 @@ -836,7 +836,9 @@ widget_hide(WIDGET(mainwin_rate_text)); widget_hide(WIDGET(mainwin_freq_text)); widget_hide(WIDGET(mainwin_monostereo)); - widget_show(WIDGET(mainwin_othertext)); + + if (bmp_active_skin->properties.mainwin_othertext_visible) + widget_show(WIDGET(mainwin_othertext)); } else { @@ -1002,7 +1004,9 @@ widget_hide(WIDGET(mainwin_rate_text)); widget_hide(WIDGET(mainwin_freq_text)); widget_hide(WIDGET(mainwin_monostereo)); - widget_show(WIDGET(mainwin_othertext)); + + if (bmp_active_skin->properties.mainwin_othertext_visible) + widget_show(WIDGET(mainwin_othertext)); } else {