Ignore:
Timestamp:
Aug 31, 2016, 5:31:04 PM (9 years ago)
Author:
Silvan Scherrer
Message:

smplayer: update trunk to version 16.8.0

Location:
smplayer/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • smplayer/trunk

  • smplayer/trunk/src/prefnetwork.cpp

    r176 r181  
    5353        connect(streaming_type_combo, SIGNAL(currentIndexChanged(int)), this, SLOT(streaming_type_combo_changed(int)));
    5454
     55#ifndef YOUTUBE_SUPPORT
     56        youtube_box->hide();
     57#endif
     58
    5559        retranslateStrings();
    5660}
     
    6569
    6670QPixmap PrefNetwork::sectionIcon() {
    67         return Images::icon("pref_network", 22);
     71        return Images::icon("pref_network");
    6872}
    6973
     
    7478        streaming_type_combo->clear();
    7579        streaming_type_combo->addItem(tr("Disabled"), Preferences::NoStreaming);
    76         #if defined(YOUTUBE_SUPPORT) && defined(MPV_SUPPORT)
     80        #ifdef MPV_SUPPORT
    7781        streaming_type_combo->addItem(tr("Auto"), Preferences::StreamingAuto);
    7882        #endif
     
    168172                "<ul>"
    169173                "<li><b>" + tr("Disabled") +":</b> " + tr("support for video sites is turned off") +"</li>"+
    170                 #if defined(YOUTUBE_SUPPORT) && defined(MPV_SUPPORT)
    171                 "<li><b>" + tr("Auto") +":</b> " + tr("enables internal support for YouTube and uses mpv + youtube-dl for the rest of the sites") +"</li>"+
     174                #ifdef MPV_SUPPORT
     175                "<li><b>" + tr("Auto") +":</b> " + tr("it will try to use mpv + youtube-dl only for the sites that require it") +"</li>"+
    172176                #endif
    173177                #ifdef YOUTUBE_SUPPORT
Note: See TracChangeset for help on using the changeset viewer.