From 4416c47a83641d80b54591ff96c081aa8ea04a3e Mon Sep 17 00:00:00 2001 From: aangerma Date: Thu, 24 Sep 2020 14:36:19 +0300 Subject: [PATCH] Fix for RS5-8698: split the message of "saved recording to:.." in order to see the first part of it on the small pop up message. --- common/model-views.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/model-views.cpp b/common/model-views.cpp index 884e39cd681..5352cb3c274 100644 --- a/common/model-views.cpp +++ b/common/model-views.cpp @@ -3758,7 +3758,7 @@ namespace rs2 sub_dev_model->_is_being_recorded = false; } is_recording = false; - notification_data nd{ to_string() << "Saved recording to: " << saved_to_filename, + notification_data nd{ to_string() << "Saved recording to:\n" << saved_to_filename, RS2_LOG_SEVERITY_INFO, RS2_NOTIFICATION_CATEGORY_UNKNOWN_ERROR }; viewer.not_model->add_notification(nd);