From dd620f7563c830a7f9a5267e6aa81c8e0b3ca608 Mon Sep 17 00:00:00 2001 From: Mark Vejvoda Date: Wed, 25 May 2011 05:52:07 +0000 Subject: [PATCH] - when in autoscreenshot mode tell the viewer to NOT take focus (just for your tomreyn) --- source/g3d_viewer/main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/source/g3d_viewer/main.cpp b/source/g3d_viewer/main.cpp index 71a2b6117..8441ee38c 100644 --- a/source/g3d_viewer/main.cpp +++ b/source/g3d_viewer/main.cpp @@ -2266,6 +2266,9 @@ bool App::OnInit() { newXRotValue, newYRotValue, appPath); + if(autoScreenShotAndExit == true) { + mainWindow->Iconize(true); + } mainWindow->Show(); mainWindow->init(); mainWindow->Update();