From c1301357408a8253806a43d3809b759431ec5c0f Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 9 Feb 2013 16:34:19 +0300 Subject: Allow correct resize for 470x320 and bigger. --- src/client.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/client.cpp b/src/client.cpp index 4c8ef0881..b22ad5994 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -2704,8 +2704,8 @@ void Client::resizeVideo(int width, int height, const bool always) { // Keep a minimum size. This isn't adhered to by the actual window, but // it keeps some window positions from getting messed up. - width = std::max(640, width); - height = std::max(480, height); + width = std::max(470, width); + height = std::max(320, height); if (!mainGraphics) return; -- cgit v1.2.3-60-g2f50