From b01cd0c788ac54e80de05b767ff8b814a1f53340 Mon Sep 17 00:00:00 2001 From: amzn-sean <75276488+amzn-sean@users.noreply.github.com> Date: Mon, 19 Jul 2021 17:25:23 +0100 Subject: [PATCH] UI tweaks of the physics doc link widget (#2259) Signed-off-by: amzn-sean <75276488+amzn-sean@users.noreply.github.com> --- Gems/PhysX/Code/Editor/DocumentationLinkWidget.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Gems/PhysX/Code/Editor/DocumentationLinkWidget.cpp b/Gems/PhysX/Code/Editor/DocumentationLinkWidget.cpp index 348648ed7b..d5f8b0ca5b 100644 --- a/Gems/PhysX/Code/Editor/DocumentationLinkWidget.cpp +++ b/Gems/PhysX/Code/Editor/DocumentationLinkWidget.cpp @@ -21,8 +21,9 @@ namespace PhysX setTextInteractionFlags(Qt::TextBrowserInteraction); setOpenExternalLinks(true); setAlignment(Qt::AlignCenter); - setContentsMargins(60, 15, 60, 15); + setContentsMargins(60, 7, 60, 7); setWordWrap(true); + setStyleSheet(QString::fromUtf8("background-color: rgb(51, 51, 51);")); } } }