summaryrefslogtreecommitdiff
path: root/src/gipfel.cxx
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2007-03-13 20:12:51 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2007-03-13 20:12:51 +0100
commitd47080e941184c48e76f535111a4657639d1a428 (patch)
tree9b3e85cbae7007882eb72c96ada8bb51930e576d /src/gipfel.cxx
parent3d907fd76ca23d69bcd7d25367c9c94063490d38 (diff)
gsl based version
Diffstat (limited to 'src/gipfel.cxx')
-rw-r--r--src/gipfel.cxx12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/gipfel.cxx b/src/gipfel.cxx
index 3862761..584ae15 100644
--- a/src/gipfel.cxx
+++ b/src/gipfel.cxx
@@ -585,10 +585,6 @@ stitch(GipfelWidget::sample_mode_t m,
st->resample(m, stitch_w, stitch_h, from, to);
- } else if (type = STITCH_VIGNETTE_CALIB) {
-
- st->vignette_calib(m, stitch_w, stitch_h, from, to);
-
} else {
win = new Fl_Window(0,0, stitch_w, stitch_h);
scroll = new Fl_Scroll(0, 0, win->w(), win->h());
@@ -598,7 +594,13 @@ stitch(GipfelWidget::sample_mode_t m,
win->resizable(scroll);
win->show(0, argv);
st->set_output((OutputImage*) img);
- st->resample(m, stitch_w, stitch_h, from, to);
+
+ if (type == STITCH_VIGNETTE_CALIB) {
+ st->vignette_calib(m, stitch_w, stitch_h, from, to);
+ } else {
+ st->resample(m, stitch_w, stitch_h, from, to);
+ }
+
img->redraw();
Fl::run();
}