From bd02a5eafd7b568c106bc033c6ad4dd22563beba Mon Sep 17 00:00:00 2001 From: Zach Fox Date: Tue, 18 Jun 2019 12:29:52 -0700 Subject: [PATCH] Better text formatting --- .../qml/hifi/simplifiedUI/settingsApp/about/About.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/resources/qml/hifi/simplifiedUI/settingsApp/about/About.qml b/interface/resources/qml/hifi/simplifiedUI/settingsApp/about/About.qml index 83a21ff0d7..6c1f4a3b57 100644 --- a/interface/resources/qml/hifi/simplifiedUI/settingsApp/about/About.qml +++ b/interface/resources/qml/hifi/simplifiedUI/settingsApp/about/About.qml @@ -165,9 +165,9 @@ Flickable { } function buildPlatformInfoTextToCopy() { - var textToCopy = "About Interface:\n"; + var textToCopy = "**About Interface**\n"; textToCopy += "Interface Version: " + Window.checkVersion() + "\n"; - textToCopy += "\nPlatform Info:\n"; + textToCopy += "\n**Platform Info**\n"; textToCopy += "Profiled Platform Tier: " + PlatformInfo.getTierProfiled() + "\n"; textToCopy += "OS Type: " + PlatformInfo.getOperatingSystemType() + "\n"; textToCopy += "CPU: " + PlatformInfo.getCPUBrand() + "\n";