Have the 'Four Control Buttons' in view even when device is locked or password locked? (Performance View)

Not sure if this is already possible - but was wondering if it were possible for the 4 control buttons to be viewed on devices with the web address even if they are locked from using those controls.

The main reason is I think it’s extremely useful in many circumstances for a musician or singer to have visual feedback on if the loop is activated or not.

By default I want most if not all other devices to be locked from controlling Ableset in case of any unfortunate accidents so I was experimenting with the password lock - then found you can’t have some kind of visual of those four buttons toggled on? They just disappear (and obviously so because they can’t be pressed/used)

Hey @Simon,

You can use custom styles to achieve this. To have the controls stay on screen when the performance view is locked, add the following code to your styles.css file:

.performance.locked {
  padding-bottom: 15vmin;
}

.performance.locked .controls {
  bottom: 0;
  pointer-events: none;
}

Let me know if this works for your use case :slight_smile: