From 10c0522dcb97ebbd08c4130290eb104ccf793980 Mon Sep 17 00:00:00 2001 From: nggieber Date: Fri, 22 Oct 2021 12:41:00 -0700 Subject: [PATCH] Added F5 support for refreshing repos Signed-off-by: nggieber --- .../Tools/ProjectManager/Source/GemRepo/GemRepoItemDelegate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/Tools/ProjectManager/Source/GemRepo/GemRepoItemDelegate.cpp b/Code/Tools/ProjectManager/Source/GemRepo/GemRepoItemDelegate.cpp index 938baa7eab..576a4aff6e 100644 --- a/Code/Tools/ProjectManager/Source/GemRepo/GemRepoItemDelegate.cpp +++ b/Code/Tools/ProjectManager/Source/GemRepo/GemRepoItemDelegate.cpp @@ -150,7 +150,7 @@ namespace O3DE::ProjectManager emit RemoveRepo(modelIndex); return true; } - else if (keyEvent->key() == Qt::Key_R) + else if (keyEvent->key() == Qt::Key_R || keyEvent->key() == Qt::Key_F5) { emit RefreshRepo(modelIndex); return true;