~ubuntu-branches/ubuntu/lucid/vino/lucid

« back to all changes in this revision

Viewing changes to server/vino-fb.c

  • Committer: Bazaar Package Importer
  • Author(s): Aron Sisak
  • Date: 2007-09-03 11:55:06 UTC
  • mfrom: (1.1.12 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20070903115506-4k8bsvttfir182mt
Tags: 2.19.92-0ubuntu1
* New upstream release:
  - Fixes
    - Bug #353304 - using Alt-Gr from a Windows VNC client to vino (LP: #34805)
    - Bug #383147 - beryl windows manager does not support vino only metacity
  - Translations: ca, da, de, et, fr, ja, ko, lt, mk, pl, pt_BR

Show diffs side-by-side

added added

removed removed

Lines of Context:
697
697
  int       major, minor;
698
698
  XGCValues values;
699
699
 
 
700
  /* FIXME: Remove this as soon as XDamage works with 3D Desktop */
 
701
  if (gdk_screen_is_composited (vfb->priv->screen))
 
702
    {
 
703
      /* not using dprintf() because i want everybody sees that message */
 
704
      printf ("\nComposite detected, disabling XDamage extension.\nThis is a workaround while XDamage extension does not work correctly with 3d desktops.\nHopefully it will work at next vino release.\n\n");
 
705
      return;
 
706
    }
 
707
 
700
708
  if (!XDamageQueryExtension (vfb->priv->xdisplay, &event_base, &error_base))
701
709
    return;
702
710