scout: fix size calculation

Fixes #978.
This commit is contained in:
Christian Prochaska 2013-11-26 16:35:10 +01:00 committed by Norman Feske
parent d0ddc11c09
commit fb468c1c87
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ class Redraw_manager
w = _canvas->w();
if (h > _canvas->h())
h = _canvas->w();
h = _canvas->h();
_w = w; _h = h;
}