From 01c06d6eaaab01a493567210e3b9dec333ea1e0d Mon Sep 17 00:00:00 2001 From: Alon Levy Date: Thu, 29 Jul 2010 12:44:49 +0300 Subject: client: Application::get_screen: fix double SpicePoint size, second hiding the first --- client/application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client/application.cpp') diff --git a/client/application.cpp b/client/application.cpp index e986475f..3dafbc6c 100644 --- a/client/application.cpp +++ b/client/application.cpp @@ -650,7 +650,7 @@ RedScreen* Application::get_screen(int id) SpicePoint size; if (_full_screen && mon) { - SpicePoint size = mon->get_size(); + size = mon->get_size(); } else { size.x = SCREEN_INIT_WIDTH; size.y = SCREEN_INIT_HEIGHT; -- cgit