~ubuntu-branches/ubuntu/gutsy/gimp/gutsy

« back to all changes in this revision

Viewing changes to plug-ins/common/glasstile.c

  • Committer: Bazaar Package Importer
  • Author(s): Steve Kowalik
  • Date: 2007-09-30 18:06:49 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20070930180649-f647f0cxj32tgyn3
Tags: 2.4.0~rc3-1ubuntu1
* Resynchronized with Debian.
* Remaining Ubuntu changes:
  - 02_help-message.patch, 03_gimp.desktop.in.in.patch: Distro changes.
  - Weave i18n magic in the rules file.
  - Munge Maintainer field as per spec.
* Ubuntu changes dropped:
  - 10_dont_show_wizard.patch: Unused, upstream doesn't call it anymore.
  - Use dh_icons.
* Disabled the print plugin, and removed the Conflicts/Replaces on
  gimp-print.

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
{
58
58
  gint     xblock;
59
59
  gint     yblock;
60
 
  gboolean preview;
61
60
  /* interface only */
62
61
  gint     constrain;
63
62
} GlassValues;
101
100
{
102
101
  20,    /* tile width  */
103
102
  20,    /* tile height */
104
 
  TRUE,  /* preview     */
105
103
  /* interface only */
106
104
  TRUE   /* constrained */
107
105
};
270
268
  gtk_container_add (GTK_CONTAINER (GTK_DIALOG (dialog)->vbox), main_vbox);
271
269
  gtk_widget_show (main_vbox);
272
270
 
273
 
  preview = gimp_drawable_preview_new (drawable, &gtvals.preview);
 
271
  preview = gimp_drawable_preview_new (drawable, NULL);
274
272
  gtk_box_pack_start_defaults (GTK_BOX (main_vbox), preview);
275
273
  gtk_widget_show (preview);
276
274
  g_signal_connect_swapped (preview, "invalidated",