Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3c100c393a | ||
|
|
2e1856ab34 | ||
|
|
0861745de4 |
6
NEWS
6
NEWS
@@ -1,3 +1,9 @@
|
|||||||
|
3.8.2
|
||||||
|
=====
|
||||||
|
* window-list: fix styling in classic mode
|
||||||
|
* window-list: code cleanups
|
||||||
|
* translation updates (cs, es, lt, pl, pt_BR, sl)
|
||||||
|
|
||||||
3.8.1
|
3.8.1
|
||||||
=====
|
=====
|
||||||
* many improvements to window-list:
|
* many improvements to window-list:
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
AC_PREREQ(2.63)
|
AC_PREREQ(2.63)
|
||||||
AC_INIT([gnome-shell-extensions],[3.8.1],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
|
AC_INIT([gnome-shell-extensions],[3.8.2],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell&component=extensions])
|
||||||
|
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
AC_CONFIG_AUX_DIR([config])
|
AC_CONFIG_AUX_DIR([config])
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
#panel.bottom-panel {
|
#panel.bottom-panel {
|
||||||
border-top-width: 1px;
|
border-top-width: 1px;
|
||||||
border-bottom-width: 0px;
|
border-bottom-width: 0px;
|
||||||
|
height: 32px !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.bottom-panel .window-button > StWidget {
|
.bottom-panel .window-button > StWidget {
|
||||||
@@ -11,6 +12,7 @@
|
|||||||
background-gradient-end: #d0d0d0;
|
background-gradient-end: #d0d0d0;
|
||||||
color: #555 !important;
|
color: #555 !important;
|
||||||
border-radius: 2px !important;
|
border-radius: 2px !important;
|
||||||
|
padding: 4px 6px 2px !important;
|
||||||
text-shadow: 0 0 transparent;
|
text-shadow: 0 0 transparent;
|
||||||
box-shadow: inset -1px -1px 1px rgba(0,0,0,0.5) !important;
|
box-shadow: inset -1px -1px 1px rgba(0,0,0,0.5) !important;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -390,8 +390,7 @@ const WorkspaceIndicator = new Lang.Class({
|
|||||||
this.workspacesItems = [];
|
this.workspacesItems = [];
|
||||||
|
|
||||||
this._screenSignals = [];
|
this._screenSignals = [];
|
||||||
this._screenSignals.push(global.screen.connect_after('workspace-added', Lang.bind(this,this._updateMenu)));
|
this._screenSignals.push(global.screen.connect('notify::n-workspaces', Lang.bind(this,this._updateMenu)));
|
||||||
this._screenSignals.push(global.screen.connect_after('workspace-removed', Lang.bind(this,this._updateMenu)));
|
|
||||||
this._screenSignals.push(global.screen.connect_after('workspace-switched', Lang.bind(this,this._updateIndicator)));
|
this._screenSignals.push(global.screen.connect_after('workspace-switched', Lang.bind(this,this._updateIndicator)));
|
||||||
|
|
||||||
this.actor.connect('scroll-event', Lang.bind(this, this._onScrollEvent));
|
this.actor.connect('scroll-event', Lang.bind(this, this._onScrollEvent));
|
||||||
|
|||||||
Reference in New Issue
Block a user