From 41daf7236803935e8743f42b19cb78a97f96cb00 Mon Sep 17 00:00:00 2001 From: Miezhiko <Miezhiko@gmail.com> Date: Wed, 25 Aug 2021 18:46:13 +0400 Subject: [PATCH] No maximize! Reverting this change: https://git.alchemyviewer.org/alchemy/alchemy-next/-/commit/dfb243cd953423e69afb0e9ea48efc9047226763 It's not like "fully immersing myself in the experience" =_= but more like annoying when app goes fullscreen every run before login Signed-off-by: Miezhiko <Miezhiko@gmail.com> --- indra/newview/llappviewer.cpp | 28 ---------------------------- indra/newview/llappviewer.h | 2 -- 2 files changed, 30 deletions(-) diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 1e5d4b7d6da..a2b507696b0 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -2945,19 +2945,6 @@ void LLAppViewer::initStrings() } } -// -// This function decides whether the client machine meets the minimum requirements to -// run in a maximized window, per the consensus of davep, boa and nyx on 3/30/2011. -// -bool LLAppViewer::meetsRequirementsForMaximizedStart() -{ - bool maximizedOk = (LLFeatureManager::getInstance()->getGPUClass() >= GPU_CLASS_2); - - maximizedOk &= (gSysMemory.getPhysicalMemoryKB() >= U32Gigabytes(1)); - - return maximizedOk; -} - bool LLAppViewer::initWindow() { LL_INFOS("AppInit") << "Initializing window..." << LL_ENDL; @@ -3046,21 +3033,6 @@ bool LLAppViewer::initWindow() LLAppViewer::instance()->forceErrorLLError(); } - // - // Determine if the window should start maximized on initial run based - // on graphics capability - // - if (gSavedSettings.getBOOL("FirstLoginThisInstall") && meetsRequirementsForMaximizedStart()) - { - LL_INFOS("AppInit") << "This client met the requirements for a maximized initial screen." << LL_ENDL; - gSavedSettings.setBOOL("WindowMaximized", TRUE); - } - - if (gSavedSettings.getBOOL("WindowMaximized")) - { - gViewerWindow->getWindow()->maximize(); - } - LLUI::sWindow = gViewerWindow->getWindow(); // Show watch cursor diff --git a/indra/newview/llappviewer.h b/indra/newview/llappviewer.h index 87894bc42ef..851df09941e 100644 --- a/indra/newview/llappviewer.h +++ b/indra/newview/llappviewer.h @@ -228,8 +228,6 @@ class LLAppViewer : public LLApp virtual std::string generateSerialNumber() = 0; // Platforms specific classes generate this. - virtual bool meetsRequirementsForMaximizedStart(); // Used on first login to decide to launch maximized - private: bool doFrame(); -- GitLab