hide settings buttons rather than disable for non Local monitors

This commit is contained in:
Andrew Bauer 2020-11-01 08:05:53 -06:00
parent 5047c28157
commit 824f38c746
1 changed files with 2 additions and 1 deletions

View File

@ -946,7 +946,8 @@ function initPage() {
}); });
// Only enable the settings button for local cameras // Only enable the settings button for local cameras
settingsBtn.prop('disabled', !(monitorType == 'Local' && canViewControl)); settingsBtn.prop('disabled', !canViewControl);
if ( monitorType != 'Local' ) settingsBtn.hide();
} // initPage } // initPage
// Kick everything off // Kick everything off