Changeset 142 for smplayer/trunk/src/prefinterface.cpp
- Timestamp:
- May 27, 2013, 3:28:05 PM (12 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk
- Property svn:mergeinfo changed
/smplayer/vendor/current merged: 140
- Property svn:mergeinfo changed
-
smplayer/trunk/src/prefinterface.cpp
r139 r142 1 1 /* smplayer, GUI front-end for mplayer. 2 Copyright (C) 2006-201 2Ricardo Villalba <rvm@users.sourceforge.net>2 Copyright (C) 2006-2013 Ricardo Villalba <rvm@users.sourceforge.net> 3 3 4 4 This program is free software; you can redistribute it and/or modify … … 229 229 setResizeMethod( pref->resize_method ); 230 230 setSaveSize( pref->save_window_size_on_exit ); 231 232 move_when_dragging_check->setChecked(pref->move_when_dragging); 233 231 234 #ifdef SINGLE_INSTANCE 232 235 setUseSingleInstance(pref->use_single_instance); … … 242 245 #endif 243 246 setPreciseSeeking(pref->precise_seeking); 247 248 reset_stop_check->setChecked(pref->reset_stop); 244 249 245 250 setDefaultFont(pref->default_font); … … 293 298 pref->save_window_size_on_exit = saveSize(); 294 299 300 pref->move_when_dragging = move_when_dragging_check->isChecked(); 301 295 302 #ifdef SINGLE_INSTANCE 296 303 pref->use_single_instance = useSingleInstance(); … … 307 314 #endif 308 315 pref->precise_seeking = preciseSeeking(); 316 317 pref->reset_stop = reset_stop_check->isChecked(); 309 318 310 319 pref->default_font = defaultFont(); … … 659 668 tr("If this option is enabled the video window will be hidden when playing audio files.") ); 660 669 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 661 673 setWhatsThis(language_combo, tr("Language"), 662 674 tr("Here you can change the language of the application.") ); … … 718 730 tr("Note: this option only works with MPlayer2") ); 719 731 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 720 739 #ifdef SINGLE_INSTANCE 721 740 addSectionTitle(tr("Instances"));
Note:
See TracChangeset
for help on using the changeset viewer.