diff options
author | William Jon McCann <mccann@src.gnome.org> | 2007-07-11 01:19:08 +0000 |
---|---|---|
committer | William Jon McCann <mccann@src.gnome.org> | 2007-07-11 01:19:08 +0000 |
commit | 5dbf8fe6464cdda8559c7b262bd04f833455218d (patch) | |
tree | cff92c7b5962892534b60f49a2491719ef383e5f /docs | |
parent | 879b311d00dfc790b259aca50f0999c211d7aa03 (diff) | |
download | gdm-5dbf8fe6464cdda8559c7b262bd04f833455218d.tar.gz |
Fix signal handling and refcounting so all slaves and servers exit on signal.:wq
svn path=/branches/mccann-gobject/; revision=5054
Diffstat (limited to 'docs')
-rw-r--r-- | docs/es/gdm.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/es/gdm.xml b/docs/es/gdm.xml index 67e9cc26..3e956b41 100644 --- a/docs/es/gdm.xml +++ b/docs/es/gdm.xml @@ -4332,6 +4332,27 @@ homogeneous="bool"> If no item node has "background" property set, then the background is not modified when greeter exits. </para> + + <para> + To use a different background for login transition than the one + used for login, insert a "item" node with "background" property set to "true" to draw login transition background before "item"e; node (without any "background" property) used for greeter background. For instance : + </para> +<screen> +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE greeter SYSTEM "greeter.dtd"> + <greeter> + + <item type="rect" background="true"> + <normal file="background_for_login.svg"/> + <pos x="0" y="0" width="100%" height="100%"/> + </item> + <item type="rect"> + <normal file="background_for_greeter.svg"/> + <pos x="0" y="0" width="100%" height="100%"/> + </item> +[...] +</greeter> +</screen> </sect3> <sect3 id="positionnodes"> |