Addressed some PR feedback and continue filtering with same search string even after refresh

Signed-off-by: nggieber <nggieber@amazon.com>
This commit is contained in:
nggieber
2021-11-10 15:29:20 -08:00
parent 2913d72d17
commit d9443ec42c
6 changed files with 22 additions and 17 deletions
@@ -30,8 +30,8 @@ namespace O3DE::ProjectManager
setLayout(layout);
// Body
QLabel* subTitleLabel = new QLabel(tr("%1Update to the latest version of %2?").arg(
updateAvaliable ? "" : tr("Force "), gemName));
QLabel* subTitleLabel = new QLabel(tr("%1 to the latest version of %2?").arg(
updateAvaliable ? tr("Update") : tr("Force update"), gemName));
subTitleLabel->setObjectName("gemCatalogDialogSubTitle");
layout->addWidget(subTitleLabel);
@@ -46,7 +46,7 @@ namespace O3DE::ProjectManager
bodyLabel->setFixedSize(QSize(440, 80));
layout->addWidget(bodyLabel);
layout->addSpacing(40);
layout->addSpacing();
// Buttons
QDialogButtonBox* dialogButtons = new QDialogButtonBox();