Skip to content

Commit ab7b1e8

Browse files
committed
Fixed use of Text instead of TextUnformatted in LogViewerDialog
1 parent 37cb3aa commit ab7b1e8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ngscopeclient/LogViewerDialog.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ bool LogViewerDialog::DoRender()
117117
//Function name
118118
ImGui::TableSetColumnIndex(1);
119119
string fname = filter.substr(icolon + 2);
120-
ImGui::Text(fname.c_str());
120+
ImGui::TextUnformatted(fname.c_str());
121121
}
122122

123123
//no it's just a class name

0 commit comments

Comments
 (0)