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/prefinterface.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
    44    This program is free software; you can redistribute it and/or modify
     
    229229        setResizeMethod( pref->resize_method );
    230230        setSaveSize( pref->save_window_size_on_exit );
     231
     232        move_when_dragging_check->setChecked(pref->move_when_dragging);
     233
    231234#ifdef SINGLE_INSTANCE
    232235        setUseSingleInstance(pref->use_single_instance);
     
    242245#endif
    243246        setPreciseSeeking(pref->precise_seeking);
     247
     248        reset_stop_check->setChecked(pref->reset_stop);
    244249
    245250        setDefaultFont(pref->default_font);
     
    293298        pref->save_window_size_on_exit = saveSize();
    294299
     300        pref->move_when_dragging = move_when_dragging_check->isChecked();
     301
    295302#ifdef SINGLE_INSTANCE
    296303        pref->use_single_instance = useSingleInstance();
     
    307314#endif
    308315        pref->precise_seeking = preciseSeeking();
     316
     317        pref->reset_stop = reset_stop_check->isChecked();
    309318
    310319        pref->default_font = defaultFont();
     
    659668        tr("If this option is enabled the video window will be hidden when playing audio files.") );
    660669
     670        setWhatsThis(move_when_dragging_check, tr("Move the window when the video area is dragged"),
     671        tr("If this option is checked, the main window will be moved if you drag the mouse over the video area.") );
     672
    661673        setWhatsThis(language_combo, tr("Language"),
    662674                tr("Here you can change the language of the application.") );
     
    718730                tr("Note: this option only works with MPlayer2") );
    719731
     732        setWhatsThis(reset_stop_check, tr("Pressing the stop button once resets the time position"),
     733                tr("By default when the stop button is pressed the time position is remembered "
     734           "so if you press play button the media will resume at the same point. You need "
     735           "to press the stop button twice to reset the time position, but if this "
     736           "option is checked the time position will be set to 0 with only once "
     737           "press of the stop button.") );
     738
    720739#ifdef SINGLE_INSTANCE
    721740        addSectionTitle(tr("Instances"));
Note: See TracChangeset for help on using the changeset viewer.