Ignore:
Timestamp:
Jan 24, 2017, 12:41:54 PM (8 years ago)
Author:
Silvan Scherrer
Message:

SMPlayer: update trunk to version 17.1.0

Location:
smplayer/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • smplayer/trunk

  • smplayer/trunk/src/prefinterface.cpp

    r181 r188  
    11/*  smplayer, GUI front-end for mplayer.
    2     Copyright (C) 2006-2016 Ricardo Villalba <rvm@users.sourceforge.net>
     2    Copyright (C) 2006-2017 Ricardo Villalba <rvm@users.sourceforge.net>
    33
    44    This program is free software; you can redistribute it and/or modify
     
    316316        gui_changed = false;
    317317        style_changed = false;
     318        font_changed = false;
    318319        recents_changed = false;
    319320
     
    357358        pref->reset_stop = reset_stop_check->isChecked();
    358359
    359         pref->default_font = defaultFont();
     360        if (pref->default_font != defaultFont()) {
     361                pref->default_font = defaultFont();
     362                font_changed = true;
     363        }
    360364
    361365        pref->hide_video_window_on_audio_files = hideVideoOnAudioFiles();
    362366
    363367#if STYLE_SWITCHING
    364     if ( pref->style != style() ) {
    365         pref->style = style();
     368        if ( pref->style != style() ) {
     369                pref->style = style();
    366370                style_changed = true;
    367371        }
Note: See TracChangeset for help on using the changeset viewer.