Ticket #9258: gallery-path.diff

File gallery-path.diff, 787 bytes (added by Lawrence Rust <lvr@…>, 13 years ago)
  • mythplugins/mythgallery/mythgallery/iconview.cpp

     
    492493                {
    493494                    QDir currentDir(m_currDir);
    494495                    QDir rootDir(m_galleryDir);
    495                     if (currentDir != rootDir)
    496                         HandleSubDirEscape(m_galleryDir);
    497                     else
     496                    if (currentDir == rootDir)
    498497                        break;
     498                    if ( !HandleSubDirEscape(m_galleryDir))
     499                        break;
    499500                }
    500501                handled = HandleEscape();
    501502            }