diff options
Diffstat (limited to 'src/gipfel.cxx')
-rw-r--r-- | src/gipfel.cxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/gipfel.cxx b/src/gipfel.cxx index b8b1462..4a284aa 100644 --- a/src/gipfel.cxx +++ b/src/gipfel.cxx @@ -374,10 +374,9 @@ int main(int argc, char** argv) { if (img_file) { gipf->load_image(img_file); } - if (gipf->w() < 1024 && gipf->h() < 768) { - view_win->size(gipf->w(), gipf->h()); - scroll->size(gipf->w(), gipf->h()); - } + + view_win->size(gipf->w(), gipf->h()); + scroll->size(gipf->w(), gipf->h()); gipf->load_data(data_file); scroll->end(); |