GrigoriyPostolskiy
New Member
Hello! I want to display the video frame slider, which is stored in media-controls.ui, immediately after loading the program, but now it appears only if I click on a scene element. The slider is rendered in `MediaControls::RefreshControls` in the line
```
ui->slider->setVisible(!isSlideshow);
```
To display the slider, I first need to specify which scene element is currently selected. How can I programmatically select a scene element?
```
ui->slider->setVisible(!isSlideshow);
```
To display the slider, I first need to specify which scene element is currently selected. How can I programmatically select a scene element?