- Update fade patch to skip crossfade when changing frames in slideshow
background.
This commit is contained in:
parent
832e7e99a4
commit
1dee568529
@ -1,33 +0,0 @@
|
|||||||
diff -up gnome-settings-daemon-2.24.0/plugins/background/gsd-background-manager.c.fade gnome-settings-daemon-2.24.0/plugins/background/gsd-background-manager.c
|
|
||||||
--- gnome-settings-daemon-2.24.0/plugins/background/gsd-background-manager.c.fade 2008-08-04 10:25:52.000000000 -0400
|
|
||||||
+++ gnome-settings-daemon-2.24.0/plugins/background/gsd-background-manager.c 2008-09-24 16:37:50.000000000 -0400
|
|
||||||
@@ -174,6 +174,7 @@ draw_background (GsdBackgroundManager *m
|
|
||||||
GdkScreen *screen;
|
|
||||||
GdkWindow *root_window;
|
|
||||||
GdkPixmap *pixmap;
|
|
||||||
+ GnomeBGCrossfade *fade;
|
|
||||||
|
|
||||||
screen = gdk_display_get_screen (display, i);
|
|
||||||
|
|
||||||
@@ -185,7 +186,9 @@ draw_background (GsdBackgroundManager *m
|
|
||||||
gdk_screen_get_height (screen),
|
|
||||||
TRUE);
|
|
||||||
|
|
||||||
- gnome_bg_set_pixmap_as_root (screen, pixmap);
|
|
||||||
+ fade = gnome_bg_set_pixmap_as_root_with_crossfade (screen, pixmap, NULL);
|
|
||||||
+ g_signal_connect (fade, "finished",
|
|
||||||
+ G_CALLBACK (g_object_unref), NULL);
|
|
||||||
|
|
||||||
g_object_unref (pixmap);
|
|
||||||
}
|
|
||||||
@@ -267,9 +270,7 @@ gsd_background_manager_start (GsdBackgro
|
|
||||||
"/apps/nautilus/preferences/show_desktop",
|
|
||||||
NULL);
|
|
||||||
|
|
||||||
- if (!nautilus_show_desktop) {
|
|
||||||
- draw_background (manager);
|
|
||||||
- } else {
|
|
||||||
+ if (nautilus_show_desktop) {
|
|
||||||
/* even when nautilus is supposedly handling the
|
|
||||||
* background, apply the settings eventually to make
|
|
||||||
* people running a nautilus-less session happy */
|
|
78
gnome-settings-daemon-2.24.0-fade.patch
Normal file
78
gnome-settings-daemon-2.24.0-fade.patch
Normal file
@ -0,0 +1,78 @@
|
|||||||
|
diff -up gnome-settings-daemon-2.24.0/plugins/background/gsd-background-manager.c.fade gnome-settings-daemon-2.24.0/plugins/background/gsd-background-manager.c
|
||||||
|
--- gnome-settings-daemon-2.24.0/plugins/background/gsd-background-manager.c.fade 2008-08-04 10:25:52.000000000 -0400
|
||||||
|
+++ gnome-settings-daemon-2.24.0/plugins/background/gsd-background-manager.c 2008-10-12 12:28:24.000000000 -0400
|
||||||
|
@@ -155,7 +155,8 @@ nautilus_is_running (void)
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
-draw_background (GsdBackgroundManager *manager)
|
||||||
|
+draw_background (GsdBackgroundManager *manager,
|
||||||
|
+ gboolean use_crossfade)
|
||||||
|
{
|
||||||
|
GdkDisplay *display;
|
||||||
|
int n_screens;
|
||||||
|
@@ -185,7 +186,15 @@ draw_background (GsdBackgroundManager *m
|
||||||
|
gdk_screen_get_height (screen),
|
||||||
|
TRUE);
|
||||||
|
|
||||||
|
- gnome_bg_set_pixmap_as_root (screen, pixmap);
|
||||||
|
+ if (use_crossfade) {
|
||||||
|
+ GnomeBGCrossfade *fade;
|
||||||
|
+
|
||||||
|
+ fade = gnome_bg_set_pixmap_as_root_with_crossfade (screen, pixmap, NULL);
|
||||||
|
+ g_signal_connect (fade, "finished",
|
||||||
|
+ G_CALLBACK (g_object_unref), NULL);
|
||||||
|
+ } else {
|
||||||
|
+ gnome_bg_set_pixmap_as_root (screen, pixmap);
|
||||||
|
+ }
|
||||||
|
|
||||||
|
g_object_unref (pixmap);
|
||||||
|
}
|
||||||
|
@@ -197,7 +206,7 @@ static gboolean
|
||||||
|
queue_draw_background (GsdBackgroundManager *manager)
|
||||||
|
{
|
||||||
|
manager->priv->timeout_id = 0;
|
||||||
|
- draw_background (manager);
|
||||||
|
+ draw_background (manager, TRUE);
|
||||||
|
return FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -205,7 +214,14 @@ static void
|
||||||
|
on_bg_changed (GnomeBG *bg,
|
||||||
|
GsdBackgroundManager *manager)
|
||||||
|
{
|
||||||
|
- draw_background (manager);
|
||||||
|
+ draw_background (manager, TRUE);
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
+static void
|
||||||
|
+on_bg_transitioned (GnomeBG *bg,
|
||||||
|
+ GsdBackgroundManager *manager)
|
||||||
|
+{
|
||||||
|
+ draw_background (manager, FALSE);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
@@ -252,6 +268,11 @@ gsd_background_manager_start (GsdBackgro
|
||||||
|
G_CALLBACK (on_bg_changed),
|
||||||
|
manager);
|
||||||
|
|
||||||
|
+ g_signal_connect (manager->priv->bg,
|
||||||
|
+ "transitioned",
|
||||||
|
+ G_CALLBACK (on_bg_transitioned),
|
||||||
|
+ manager);
|
||||||
|
+
|
||||||
|
watch_bg_preferences (manager);
|
||||||
|
gnome_bg_load_from_preferences (manager->priv->bg,
|
||||||
|
manager->priv->client);
|
||||||
|
@@ -267,9 +288,7 @@ gsd_background_manager_start (GsdBackgro
|
||||||
|
"/apps/nautilus/preferences/show_desktop",
|
||||||
|
NULL);
|
||||||
|
|
||||||
|
- if (!nautilus_show_desktop) {
|
||||||
|
- draw_background (manager);
|
||||||
|
- } else {
|
||||||
|
+ if (nautilus_show_desktop) {
|
||||||
|
/* even when nautilus is supposedly handling the
|
||||||
|
* background, apply the settings eventually to make
|
||||||
|
* people running a nautilus-less session happy */
|
@ -1,6 +1,6 @@
|
|||||||
Name: gnome-settings-daemon
|
Name: gnome-settings-daemon
|
||||||
Version: 2.24.0
|
Version: 2.24.0
|
||||||
Release: 5%{?dist}
|
Release: 6%{?dist}
|
||||||
Summary: The daemon sharing settings from GNOME to GTK+/KDE applications
|
Summary: The daemon sharing settings from GNOME to GTK+/KDE applications
|
||||||
|
|
||||||
Group: System Environment/Daemons
|
Group: System Environment/Daemons
|
||||||
@ -36,7 +36,7 @@ Patch6: gnome-settings-daemon-2.23.4-drop-sample-cache.patch
|
|||||||
Patch7: gnome-settings-daemon-2.23.91-fnf7-cycle.patch
|
Patch7: gnome-settings-daemon-2.23.91-fnf7-cycle.patch
|
||||||
|
|
||||||
# http://bugzilla.gnome.org/show_bug.cgi?id=552857
|
# http://bugzilla.gnome.org/show_bug.cgi?id=552857
|
||||||
Patch8: gnome-settings-daemon-2.23.92-fade.patch
|
Patch8: gnome-settings-daemon-2.24.0-fade.patch
|
||||||
|
|
||||||
# http://bugzilla.gnome.org/show_bug.cgi?id=554525
|
# http://bugzilla.gnome.org/show_bug.cgi?id=554525
|
||||||
Patch9: fix-gdm-layout.patch
|
Patch9: fix-gdm-layout.patch
|
||||||
@ -167,6 +167,10 @@ fi
|
|||||||
%{_libdir}/pkgconfig/gnome-settings-daemon.pc
|
%{_libdir}/pkgconfig/gnome-settings-daemon.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Oct 12 2008 Ray Strode <rstrode@redhat.com> - 2.24.0-6
|
||||||
|
- Update fade patch to skip crossfade when changing frames in
|
||||||
|
slideshow background.
|
||||||
|
|
||||||
* Fri Oct 10 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-5
|
* Fri Oct 10 2008 Matthias Clasen <mclasen@redhat.com> - 2.24.0-5
|
||||||
- Fix the picking up of the gdm keyboard layout even more
|
- Fix the picking up of the gdm keyboard layout even more
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user