Ignore:
Timestamp:
Oct 24, 2012, 7:56:20 PM (13 years ago)
Author:
Silvan Scherrer
Message:

SMplayer: update vendor to 0.8.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • smplayer/vendor/current/src/basegui.cpp

    r130 r133  
    309309             this, SLOT(openAudioCD()) );
    310310
    311 #ifdef Q_OS_WIN
    312         // VCD's and Audio CD's seem they don't work on windows
    313         //openVCDAct->setEnabled(pref->enable_vcd_on_windows);
    314         openAudioCDAct->setEnabled(pref->enable_audiocd_on_windows);
    315 #endif
    316 
    317311        openDVDAct = new MyAction( this, "open_dvd" );
    318312        connect( openDVDAct, SIGNAL(triggered()),
     
    19031897             this, SLOT(exitFullscreenOnStop()) );
    19041898
     1899        connect( core, SIGNAL(mediaStoppedByUser()),
     1900             mplayerwindow, SLOT(showLogo()) );
     1901
    19051902        connect( core, SIGNAL(mediaLoaded()),
    19061903             this, SLOT(enableActionsOnPlaying()) );
     
    19671964#endif
    19681965        mplayerwindow->allowVideoMovement( pref->allow_video_movement );
     1966
     1967#if LOGO_ANIMATION
     1968        mplayerwindow->setAnimatedLogo( pref->animated_logo);
     1969#endif
    19691970
    19701971        QHBoxLayout * layout = new QHBoxLayout;
     
    20612062        connect( playlist, SIGNAL(playlistEnded()),
    20622063             this, SLOT(playlistHasFinished()) );
     2064
     2065        connect( playlist, SIGNAL(playlistEnded()),
     2066             mplayerwindow, SLOT(showLogo()) );
     2067
    20632068        /*
    20642069        connect( playlist, SIGNAL(visibilityChanged()),
     
    30903095                        // Let's see if it looks like a file (no dvd://1 or something)
    30913096                        if (fullname.indexOf(QRegExp("^.*://.*")) == -1) filename = fi.fileName();
     3097
     3098                        if (filename.size() > 85) {
     3099                                filename = filename.left(80) + "...";
     3100                        }
    30923101
    30933102                        QAction * a = recentfiles_menu->addAction( QString("%1. " + filename ).arg( i.insert( i.size()-1, '&' ), 3, ' ' ));
Note: See TracChangeset for help on using the changeset viewer.