Re: getting rid of topbar
- From: Florian Müllner <fmuellner gnome org>
- To: Artur Wroblewski <wrobell pld-linux org>
- Cc: gnome-shell-list gnome org
- Subject: Re: getting rid of topbar
- Date: Thu, 2 Jun 2011 11:26:43 +0200
Hey,
2011/6/2 Artur Wroblewski
<wrobell pld-linux org>
good point. shouldn't some CSS suffice here, i.e. height: 0px or
visibility: none?
No, that would only "hide" the panel background - without doing fancy stuff like animations, you'll need something along the lines of:
Main.overview.connect('showing', function() {
Main.panel.actor.show();
Main.panel._leftCorner.actor.show();
Main.panel._rightCorner.actor.show();
});
Main.overview.connect('hidden', function() {
Main.panel.actor.hide();
Main.panel._leftCorner.actor.hide();
Main.panel._rightCorner.actor.hide();
});
Florian
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]