Style fixes for the popup menu

https://bugzilla.gnome.org/show_bug.cgi?id=629954
This commit is contained in:
William Jon McCann
2010-09-18 11:55:02 -04:00
parent 555409aba2
commit 516fe49bb0
2 changed files with 3 additions and 5 deletions

View File

@ -40,12 +40,12 @@ Switch.prototype = {
this._on.remove_style_pseudo_class('checked');
this._on.text = _("ON");
this._off.add_style_pseudo_class('checked');
this._off.text = '|||';
this._off.text = ' ';
} else {
this._off.remove_style_pseudo_class('checked');
this._off.text = _("OFF");
this._on.add_style_pseudo_class('checked');
this._on.text = '|||';
this._on.text = ' ';
}
this.state = state;
},