mirror of https://github.com/GNOME/gimp.git
Fix cut-and-paste error reported by Claes G Lindblad.
* app/channel_ops.c (offset_halfheight_callback): Fix cut-and-paste error reported by Claes G Lindblad.
This commit is contained in:
parent
b52b6fde8c
commit
61724bfb50
|
@ -1,3 +1,8 @@
|
|||
1999-08-01 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* app/channel_ops.c (offset_halfheight_callback): Fix
|
||||
cut-and-paste error reported by Claes G Lindblad.
|
||||
|
||||
Thu Jul 29 22:06:41 PDT 1999 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* tools/pdbgen/pdb/tools.pdb: revert previous change
|
||||
|
|
|
@ -556,7 +556,7 @@ offset_halfheight_callback (GtkWidget *widget,
|
|||
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (off_d->off_se),
|
||||
0, gimage->width / 2);
|
||||
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (off_d->off_se),
|
||||
1, gimage->width / 2);
|
||||
1, gimage->height / 2);
|
||||
}
|
||||
|
||||
GimpImage *
|
||||
|
|
|
@ -556,7 +556,7 @@ offset_halfheight_callback (GtkWidget *widget,
|
|||
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (off_d->off_se),
|
||||
0, gimage->width / 2);
|
||||
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (off_d->off_se),
|
||||
1, gimage->width / 2);
|
||||
1, gimage->height / 2);
|
||||
}
|
||||
|
||||
GimpImage *
|
||||
|
|
|
@ -556,7 +556,7 @@ offset_halfheight_callback (GtkWidget *widget,
|
|||
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (off_d->off_se),
|
||||
0, gimage->width / 2);
|
||||
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (off_d->off_se),
|
||||
1, gimage->width / 2);
|
||||
1, gimage->height / 2);
|
||||
}
|
||||
|
||||
GimpImage *
|
||||
|
|
|
@ -556,7 +556,7 @@ offset_halfheight_callback (GtkWidget *widget,
|
|||
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (off_d->off_se),
|
||||
0, gimage->width / 2);
|
||||
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (off_d->off_se),
|
||||
1, gimage->width / 2);
|
||||
1, gimage->height / 2);
|
||||
}
|
||||
|
||||
GimpImage *
|
||||
|
|
|
@ -556,7 +556,7 @@ offset_halfheight_callback (GtkWidget *widget,
|
|||
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (off_d->off_se),
|
||||
0, gimage->width / 2);
|
||||
gimp_size_entry_set_refval (GIMP_SIZE_ENTRY (off_d->off_se),
|
||||
1, gimage->width / 2);
|
||||
1, gimage->height / 2);
|
||||
}
|
||||
|
||||
GimpImage *
|
||||
|
|
Loading…
Reference in New Issue