From dc79ae6feacf2082c05993d0301ecaf50de04b3a Mon Sep 17 00:00:00 2001 From: thedmd Date: Sat, 19 Mar 2022 09:48:48 +0100 Subject: [PATCH] In callstack table view, copy location with line to clipboard instead just location. --- server/TracyView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/TracyView.cpp b/server/TracyView.cpp index 654f40a4..163775eb 100644 --- a/server/TracyView.cpp +++ b/server/TracyView.cpp @@ -14264,7 +14264,7 @@ void View::DrawCallstackTable( uint32_t callstack, bool globalEntriesButton ) TextDisabledUnformatted( LocationToString( txt, frame.line ) ); if( ImGui::IsItemClicked() ) { - ImGui::SetClipboardText( txt ); + ImGui::SetClipboardText( LocationToString( txt, frame.line ) ); } break; case 1: