Skip to content

Commit

Permalink
Extend the maximum transition times in mythgallery
Browse files Browse the repository at this point in the history
Signed-off-by: Gavin Hurlbut <ghurlbut@mythtv.org>
  • Loading branch information
Richard Morton authored and Beirdo committed Jul 8, 2011
1 parent a466843 commit a59fa98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythplugins/mythgallery/mythgallery/gallerysettings.cpp
Expand Up @@ -122,7 +122,7 @@ static HostComboBox *SlideshowOpenGLTransition()
static HostSpinBox *SlideshowOpenGLTransitionLength()
{
HostSpinBox *gc = new HostSpinBox(
"SlideshowOpenGLTransitionLength", 500, 10000, 500);
"SlideshowOpenGLTransitionLength", 500, 120000, 500);
gc->setLabel(QObject::tr("Duration of OpenGL Transition (milliseconds)"));
gc->setValue(2000);
return gc;
Expand Down Expand Up @@ -168,7 +168,7 @@ static HostComboBox *SlideshowBackground()

static HostSpinBox *SlideshowDelay()
{
HostSpinBox *gc = new HostSpinBox("SlideshowDelay", 1, 600, 1);
HostSpinBox *gc = new HostSpinBox("SlideshowDelay", 1, 86400, 1);
gc->setLabel(QObject::tr("Slideshow Delay"));
gc->setValue(5);
gc->setHelpText(QObject::tr("This is the number of seconds to display each "
Expand Down

0 comments on commit a59fa98

Please sign in to comment.