From 56fb75ff46c36fd6484ad7c1908744c5787e58ee Mon Sep 17 00:00:00 2001 From: baldurk Date: Mon, 3 Feb 2020 13:03:57 +0000 Subject: [PATCH] Fix formatting mistake in thread name --- qrenderdoc/Code/Interface/ShaderProcessingTool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qrenderdoc/Code/Interface/ShaderProcessingTool.cpp b/qrenderdoc/Code/Interface/ShaderProcessingTool.cpp index d9e24f374..823bb652a 100644 --- a/qrenderdoc/Code/Interface/ShaderProcessingTool.cpp +++ b/qrenderdoc/Code/Interface/ShaderProcessingTool.cpp @@ -158,7 +158,7 @@ static ShaderToolOutput RunTool(const ShaderProcessingTool &tool, QWidget *windo process.moveToThread(mainThread); }); - thread->setName(lit("ShaderProcessingTool %s").arg(tool.name)); + thread->setName(lit("ShaderProcessingTool %1").arg(tool.name)); thread->moveObjectToThread(&process); thread->start();