Ignore:
Timestamp:
May 27, 2013, 3:28:05 PM (12 years ago)
Author:
Silvan Scherrer
Message:

SMPlayer: update trunk to 0.8.5

Location:
smplayer/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • smplayer/trunk

  • smplayer/trunk/src/skingui/mediabarpanel.cpp

    r139 r142  
    11/*  smplayer, GUI front-end for mplayer.
    2     Copyright (C) 2006-2012 Ricardo Villalba <rvm@users.sourceforge.net>
     2    Copyright (C) 2006-2013 Ricardo Villalba <rvm@users.sourceforge.net>
    33    umplayer, Copyright (C) 2010 Ori Rejwan
    44
     
    5454
    5555        connect(volumeControlPanel, SIGNAL(volumeChanged(int)), this, SIGNAL(volumeChanged(int)));
     56        connect(volumeControlPanel, SIGNAL(volumeSliderMoved(int)), this, SIGNAL(volumeSliderMoved(int)));
    5657        connect(mediaPanel, SIGNAL(seekerChanged(int)), this, SIGNAL(seekerChanged(int)));
    5758}
     
    99100    connect( core, SIGNAL(showTime(double)), this, SLOT(gotCurrentTime(double)) );
    100101    connect( core, SIGNAL(mediaInfoChanged()), this, SLOT(updateMediaInfo()) );
    101     /* connect( core, SIGNAL(buffering()), this, SLOT(setBuffering()) ); */
     102    connect( core, SIGNAL(buffering()), this, SLOT(setBuffering()) );
    102103}
    103104
     
    119120void MediaBarPanel::updateMediaInfo()
    120121{
    121     mediaPanel->setMediaLabelText(core->mdat.displayName());
     122    QString s = QString("%1 (%2x%3)").arg(core->mdat.displayName()).arg(core->mdat.video_width).arg(core->mdat.video_height);
     123    mediaPanel->setMediaLabelText(s);
    122124}
    123125
Note: See TracChangeset for help on using the changeset viewer.