From 1ee6ea39166c53ec38e77161f62123f5c5e77768 Mon Sep 17 00:00:00 2001 From: baldurk Date: Tue, 14 Aug 2018 17:29:33 +0100 Subject: [PATCH] Make sure messages with bold tag are detected as HTML --- qrenderdoc/Windows/MainWindow.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/qrenderdoc/Windows/MainWindow.cpp b/qrenderdoc/Windows/MainWindow.cpp index 74df692cf..7b96fb99f 100644 --- a/qrenderdoc/Windows/MainWindow.cpp +++ b/qrenderdoc/Windows/MainWindow.cpp @@ -512,13 +512,13 @@ void MainWindow::OnCaptureTrigger(const QString &exe, const QString &workingDir, { RDDialog::critical( this, tr("Error connecting to debugger"), - tr("Error launching %1 for capture.\n\n" + tr("Error launching %1 for capture.\n\n" "Something went wrong connecting to the debugger on the Android device.\n\n" "This can happen if the package is not " "marked as debuggable, or if another android tool such as Android Studio " "is interfering with the debug connection.\n\n" - "Close all instances of Android Studio or other Android programs" - "and try again.") + "Close all instances of Android Studio or other Android programs " + "and try again.") .arg(exe)); return; } @@ -572,13 +572,13 @@ void MainWindow::OnInjectTrigger(uint32_t PID, const rdcarrayError injecting into process %1 for capture.\n\n" "Something went wrong connecting to the debugger on the Android device.\n\n" "This can happen if the package is not " "marked as debuggable, or if another android tool such as Android Studio " "is interfering with the debug connection.\n\n" - "Close all instances of Android Studio or other Android programs" - "and try again.") + "Close all instances of Android Studio or other Android programs " + "and try again.") .arg(PID)); return; }