ui: Set sensitivity of plugin title label as well
authorZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Sun, 27 Sep 2009 22:56:41 +0000 (01:56 +0300)
committerZeeshan Ali (Khattak) <zeeshanak@gnome.org>
Sun, 27 Sep 2009 22:56:41 +0000 (01:56 +0300)
src/ui/rygel-plugin-pref-section.vala

index 4b93991..d552e8d 100644 (file)
@@ -80,7 +80,8 @@ public class Rygel.PluginPrefSection : PreferencesSection {
     }
 
     protected void on_enabled_check_toggled (CheckButton enabled_check) {
-        this.title_entry.sensitive = enabled_check.active;
+        this.title_entry.sensitive =
+        this.title_label.sensitive = enabled_check.active;
 
         foreach (var widget in this.widgets) {
             widget.sensitive = enabled_check.active;