~ubuntu-branches/ubuntu/oneiric/gimp/oneiric-security

« back to all changes in this revision

Viewing changes to app/core/gimpprojection.c

  • Committer: Bazaar Package Importer
  • Author(s): Pedro Fragoso
  • Date: 2008-02-03 03:07:19 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20080203030719-4s9wlbv30394rlrp
Tags: 2.4.4-1ubuntu1
* Merge from Debian unstable. (LP: #188828)
* Ubuntu remaining changes:
  - 02_help-message.patch, 03_gimp.desktop.in.in.patch: Distro changes.
  - Weave i18n magic in the rules file.
  - Remove the doc directory symlink in the preinst, and replace it with a
    directory.
  - Added NEWS, README and README.Debian to gimp.docs.
  - Modify Maintainer value to match Debian-Maintainer-Field Spec
 

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
#include "gimpprojection-construct.h"
36
36
 
37
37
 
 
38
/*  halfway between G_PRIORITY_HIGH_IDLE and G_PRIORITY_DEFAULT_IDLE  */
 
39
#define  GIMP_PROJECTION_IDLE_PRIORITY  150
 
40
 
 
41
 
38
42
enum
39
43
{
40
44
  UPDATE,
546
550
      gimp_projection_idle_render_next_area (proj);
547
551
 
548
552
      proj->idle_render.idle_id =
549
 
        g_idle_add_full (G_PRIORITY_HIGH_IDLE,
 
553
        g_idle_add_full (GIMP_PROJECTION_IDLE_PRIORITY,
550
554
                         gimp_projection_idle_render_callback, proj,
551
555
                         NULL);
552
556
    }