From 638d0015a82441b4a8655380ec2b19be21139da2 Mon Sep 17 00:00:00 2001 From: noacoohen Date: Tue, 13 Sep 2022 13:58:11 +0300 Subject: [PATCH] adding the hardware size tool tip --- common/model-views.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/model-views.cpp b/common/model-views.cpp index f8df48e53c..6d6ce53196 100644 --- a/common/model-views.cpp +++ b/common/model-views.cpp @@ -3202,7 +3202,8 @@ namespace rs2 if (profile.as()) { 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,