Skip to content

Commit

Permalink
Fix for RS5-8698: split the message of "saved recording to:.."
Browse files Browse the repository at this point in the history
in order to see the first part of it on the small pop up message.
  • Loading branch information
aangerma committed Sep 24, 2020
1 parent e64acf8 commit 4416c47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/model-views.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 4416c47

Please sign in to comment.