From: Zeeshan Ali (Khattak) Date: Sun, 27 Sep 2009 22:56:41 +0000 (+0300) Subject: ui: Set sensitivity of plugin title label as well X-Git-Tag: RYGEL_0_4_2~39 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=99480a599f5fbb532d8ae0bc5e84c847d91a2fb6;p=profile%2Fivi%2Frygel.git ui: Set sensitivity of plugin title label as well --- 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;