From 99480a599f5fbb532d8ae0bc5e84c847d91a2fb6 Mon Sep 17 00:00:00 2001 From: "Zeeshan Ali (Khattak)" Date: Mon, 28 Sep 2009 01:56:41 +0300 Subject: [PATCH] ui: Set sensitivity of plugin title label as well --- src/ui/rygel-plugin-pref-section.vala | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ui/rygel-plugin-pref-section.vala b/src/ui/rygel-plugin-pref-section.vala index 4b93991..d552e8d 100644 --- a/src/ui/rygel-plugin-pref-section.vala +++ b/src/ui/rygel-plugin-pref-section.vala @@ -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; -- 2.7.4