panel: Remove .in-overview style class

The panel used to be styled differently in the overview, but
nowadays this is just a left-over.

https://bugzilla.gnome.org/show_bug.cgi?id=684573
This commit is contained in:
Florian Müllner 2012-09-21 22:16:03 +02:00
parent a112bfdaa2
commit c0f868dd56

View File

@ -966,13 +966,6 @@ const Panel = new Lang.Class({
this.statusArea = {};
Main.overview.connect('shown', Lang.bind(this, function () {
this.actor.add_style_class_name('in-overview');
}));
Main.overview.connect('hiding', Lang.bind(this, function () {
this.actor.remove_style_class_name('in-overview');
}));
this.menuManager = new PopupMenu.PopupMenuManager(this);
this._leftBox = new St.BoxLayout({ name: 'panelLeft' });