Skip to content

Commit

Permalink
Fixed accidental use of Text() instead of TextUnformatted()
Browse files Browse the repository at this point in the history
  • Loading branch information
azonenberg committed Aug 29, 2024
1 parent 19e433d commit e082092
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ngscopeclient/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1598,7 +1598,7 @@ void MainWindow::StatusBar(float height)
{
ImGui::Image(GetTexture(it.first), iconSize);
ImGui::SameLine();
ImGui::Text(it.second.c_str());
ImGui::TextUnformatted(it.second.c_str());
ImGui::SameLine();
}

Expand Down

0 comments on commit e082092

Please sign in to comment.