editor: Increase default viewport size to 800x500

This should allow one to place four viewports plus the console and the
property/tool window on a 1920x1080 screen.
floating-point
Günther Brammer 2012-08-19 21:01:54 +02:00
parent 58ac553956
commit 5a2831a1e7
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ C4Window * C4ViewportWindow::Init(int32_t Player)
{
C4Window* result;
const char * Title = Player == NO_OWNER ? LoadResStr("IDS_CNS_VIEWPORT") : ::Players.Get(Player)->GetName();
C4Rect r(0,0,400,250);
C4Rect r(0,0,800,500);
result = C4Window::Init(C4Window::W_Viewport, &Application, Title, &r);
if (!result) return result;