Hide the ptz_home button. Likely not important enough for most users.

This commit is contained in:
Dermot Duffy
2024-06-05 22:12:42 -07:00
parent 71c8a3ca37
commit 08ba2ee0b1
3 changed files with 5 additions and 5 deletions
@@ -1550,7 +1550,7 @@ describe('MenuButtonController', () => {
if (expectedResult) {
expect(buttons).toContainEqual({
enabled: true,
enabled: false,
icon: 'mdi:home',
priority: 50,
tap_action: {
@@ -1563,7 +1563,7 @@ describe('MenuButtonController', () => {
});
} else {
expect(buttons).not.toContainEqual(
expect.objectContaining({ title: 'Digital zoom to default' }),
expect.objectContaining({ title: 'PTZ Home' }),
);
}
},