In callstack table view, copy location with line to clipboard instead just location.

This commit is contained in:
thedmd 2022-03-19 09:48:48 +01:00
parent 4d33dc0f3e
commit dc79ae6fea

View File

@ -14264,7 +14264,7 @@ void View::DrawCallstackTable( uint32_t callstack, bool globalEntriesButton )
TextDisabledUnformatted( LocationToString( txt, frame.line ) ); TextDisabledUnformatted( LocationToString( txt, frame.line ) );
if( ImGui::IsItemClicked() ) if( ImGui::IsItemClicked() )
{ {
ImGui::SetClipboardText( txt ); ImGui::SetClipboardText( LocationToString( txt, frame.line ) );
} }
break; break;
case 1: case 1: