Skip to content

Commit

Permalink
PR #8816 from Nir: Inhibit checking for updates on playback device
Browse files Browse the repository at this point in the history
  • Loading branch information
maloel authored Apr 13, 2021
2 parents bce3075 + 3838e7f commit 670d9fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/model-views.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3775,8 +3775,8 @@ namespace rs2

auto name = get_device_name(dev);

// Inhibit on DQT
if ( _allow_remove )
// Inhibit on DQT / Playback device
if( _allow_remove && ( ! dev.is< playback >() ) )
check_for_device_updates(viewer);

if ((bool)config_file::instance().get(configurations::update::recommend_calibration))
Expand Down

0 comments on commit 670d9fd

Please sign in to comment.