Focus out exact memory plot value.

This commit is contained in:
Bartosz Taudul 2019-09-16 20:27:16 +02:00
parent 7673028dba
commit 5796f19a3b

View File

@ -4871,7 +4871,9 @@ void View::DrawPlotPoint( const ImVec2& wpos, float x, float y, int offset, uint
}
else
{
ImGui::Text( "%s (%s)", MemSizeToString( item->val ), RealToString( item->val, true ) );
ImGui::TextUnformatted( MemSizeToString( item->val ) );
ImGui::SameLine();
ImGui::TextDisabled( "(%s)", RealToString( item->val, true ) );
}
}
else