Completed FirstTimeUseScreen with Final UX Look (#812)

* Forced Project Manager window to 1200x800

* Final look for FirstTimeUseScreen, essentially complete

* Remove margins on screens

* Added License info for image
This commit is contained in:
AMZN-nggieber
2021-05-19 12:48:55 -07:00
committed by GitHub
parent 6a108c0515
commit 25e811ff6c
11 changed files with 101 additions and 111 deletions
@@ -27,6 +27,12 @@ namespace O3DE::ProjectManager
, m_ui(new Ui::ProjectManagerWindowClass())
{
m_ui->setupUi(this);
QLayout* layout = m_ui->centralWidget->layout();
layout->setMargin(0);
layout->setSpacing(0);
layout->setContentsMargins(0, 0, 0, 0);
setFixedSize(this->geometry().width(), this->geometry().height());
m_pythonBindings = AZStd::make_unique<PythonBindings>(engineRootPath);