Skip to content

Commit

Permalink
PR #10895 from noacoohen: Set the metadata hardware size tool tip des…
Browse files Browse the repository at this point in the history
…cription
  • Loading branch information
Nir-Az authored Sep 14, 2022
2 parents ef8bc84 + 638d001 commit ca3355e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion common/model-views.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3202,7 +3202,8 @@ namespace rs2
if (profile.as<rs2::video_stream_profile>())
{
stream_details.push_back({ "Hardware Size",
to_string() << original_size.x << " x " << original_size.y, "" });
to_string() << original_size.x << " x " << original_size.y,
"Hardware size is the original frame resolution we got from the sensor, before applying post processing filters." });

stream_details.push_back({ "Display Size",
to_string() << size.x << " x " << size.y,
Expand Down

0 comments on commit ca3355e

Please sign in to comment.