aboutsummaryrefslogtreecommitdiffstats
path: root/vncviewer/DesktopWindow.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vncviewer/DesktopWindow.cxx')
-rw-r--r--vncviewer/DesktopWindow.cxx7
1 files changed, 0 insertions, 7 deletions
diff --git a/vncviewer/DesktopWindow.cxx b/vncviewer/DesktopWindow.cxx
index b0f79933..2d363781 100644
--- a/vncviewer/DesktopWindow.cxx
+++ b/vncviewer/DesktopWindow.cxx
@@ -359,13 +359,6 @@ void DesktopWindow::resizeFramebuffer(int new_w, int new_h)
if (!fullscreen_active() && !maximized) {
if ((w() == viewport->w()) && (h() == viewport->h()))
size(new_w, new_h);
- else {
- // Make sure the window isn't too big. We do this manually because
- // we have to disable the window size restriction (and it isn't
- // entirely trustworthy to begin with).
- if ((w() > new_w) || (h() > new_h))
- size(__rfbmin(w(), new_w), __rfbmin(h(), new_h));
- }
}
viewport->size(new_w, new_h);