Compare commits

...

3 Commits

Author SHA1 Message Date
965dd2ab67 Bump version to 3.8.0.1
Update NEWS.
2013-03-27 12:28:56 -04:00
78e011d558 background: fix multimonitor background placement in overview
This is like the previous commit but for monitor index, instead
of effects.

https://bugzilla.gnome.org/show_bug.cgi?id=696712
2013-03-27 12:13:47 -04:00
76590d6c69 background: fix vignette in overview
We no longer apply background effects when loading backgrounds.

This commit fixes that.

https://bugzilla.gnome.org/show_bug.cgi?id=696712
2013-03-27 12:09:02 -04:00
3 changed files with 7 additions and 1 deletions

4
NEWS
View File

@ -1,3 +1,7 @@
3.8.0.1
=======
* Background bug fixes [Ray; #696712]
3.8.0 3.8.0
===== =====
* Remove blur and desaturation from lock screen [Jasper; #696322] * Remove blur and desaturation from lock screen [Jasper; #696322]

View File

@ -1,5 +1,5 @@
AC_PREREQ(2.63) AC_PREREQ(2.63)
AC_INIT([gnome-shell],[3.8.0],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell],[gnome-shell]) AC_INIT([gnome-shell],[3.8.0.1],[https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell],[gnome-shell])
AC_CONFIG_HEADERS([config.h]) AC_CONFIG_HEADERS([config.h])
AC_CONFIG_SRCDIR([src/shell-global.c]) AC_CONFIG_SRCDIR([src/shell-global.c])

View File

@ -241,6 +241,8 @@ const BackgroundCache = new Lang.Class({
} else { } else {
this._loadImageContent({ filename: params.filename, this._loadImageContent({ filename: params.filename,
style: params.style, style: params.style,
effects: params.effects,
monitorIndex: params.monitorIndex,
cancellable: params.cancellable, cancellable: params.cancellable,
onFinished: params.onFinished }); onFinished: params.onFinished });