changeset 1799:9e37de705efa trunk

[svn] - othertext visibility enforcement
author nenolod
date Wed, 04 Oct 2006 20:10:32 -0700
parents 565e9c1f8d4f
children 61f531908dd0
files ChangeLog audacious/mainwin.c
diffstat 2 files changed, 14 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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 <nenolod@nenolod.net>
+  revision [2553]
+  - more fix
+  
+  trunk/audacious/widgets/textbox.c |    1 +
+  1 file changed, 1 insertion(+)
+
+
 2006-10-05 03:05:42 +0000  William Pitcock <nenolod@nenolod.net>
   revision [2551]
   - fix
--- 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
     {