From acd3c7852700b349f74b83c683256c00c02181b2 Mon Sep 17 00:00:00 2001 From: Johannes Hofmann Date: Sun, 19 Feb 2006 18:21:02 +0100 Subject: don't limit view window size --- src/gipfel.cxx | 7 +++---- 1 file 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(); -- cgit v1.2.3