Picture Player "play" icon not properly displayed in slideshow

Issue #377 resolved
prl created an issue

When the Picture Player is in slide show mode, the "play" icon is not shown at the top left when the slide show is initially started.

If the slide show is paused/restarted, the "play" icon is shown.

The initial call of Pic_Full_View.PlayPause() should be in Pic_Full_View.setPicloadConf(), after self.start_decode() is called, not in Pic_Full_View.init(). Otherwise the initial calls of self["play_icon"].hide() and self["play_icon"].show() are in the wrong order.

Reproduction steps

MENU>Pictures; navigate to a folder with pictures, highlight a picture and press OK.

The green triangular "play" icon should be displayed just to the left of the picture filename, but it isn't. Press GREEN or YELLOW to pause the slide show, then press GREEN or YELLOW to restart the slide show. The "play" icon is now displayed and is shown and hidden each time the slide show is restarted within the same instance of the screen.

Comments (1)

  1. Peter Urbanec

    Fix Bug #377: Picture Player "play" icon not properly displayed in slideshow

    In [Pic_Full_View], move the initial call of self.PlayPause() from init() to setPicloadConf() so that the hide()/show()s on self["play_icon"] are called in the right order,

    → <<cset abc87fa605fd>>

  2. Log in to comment