Changeset 170 for smplayer/trunk/src/prefgeneral.cpp
- Timestamp:
- Oct 9, 2014, 2:54:21 PM (11 years ago)
- Location:
- smplayer/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
smplayer/trunk
- Property svn:mergeinfo changed
/smplayer/vendor/current merged: 168
- Property svn:mergeinfo changed
-
smplayer/trunk/src/prefgeneral.cpp
r165 r170 71 71 #endif 72 72 73 #ifndef AUTO_SHUTDOWN_PC 74 shutdown_widget->hide(); 75 #endif 76 73 77 // Channels combo 74 78 channels_combo->addItem( "2", MediaSettings::ChStereo ); … … 199 203 setCloseOnFinish( pref->close_on_finish ); 200 204 setPauseWhenHidden( pref->pause_when_hidden ); 205 #ifdef AUTO_SHUTDOWN_PC 206 shutdown_check->setChecked( pref->auto_shutdown_pc ); 207 #endif 201 208 202 209 setEq2( pref->use_soft_video_eq ); … … 288 295 pref->close_on_finish = closeOnFinish(); 289 296 pref->pause_when_hidden = pauseWhenHidden(); 297 298 #ifdef AUTO_SHUTDOWN_PC 299 pref->auto_shutdown_pc = shutdown_check->isChecked(); 300 #endif 290 301 291 302 TEST_AND_SET(pref->use_soft_video_eq, eq2()); … … 901 912 "screenshot feature will be disabled.") ); 902 913 903 setWhatsThis(close_on_finish_check, tr("Close when finished"),904 tr("If this option is checked, the main window will be automatically "905 "closed when the current file/playlist finishes.") );906 907 914 setWhatsThis(pause_if_hidden_check, tr("Pause when minimized"), 908 915 tr("If this option is enabled, the file will be paused when the " 909 916 "main window is hidden. When the window is restored, playback " 910 917 "will be resumed.") ); 918 919 setWhatsThis(close_on_finish_check, tr("Close when finished"), 920 tr("If this option is checked, the main window will be automatically " 921 "closed when the current file/playlist finishes.") ); 922 923 #ifdef AUTO_SHUTDOWN_PC 924 setWhatsThis(shutdown_check, tr("Shut down computer"), 925 tr("If this option is enabled, the computer will shut down just after SMPlayer is closed.") ); 926 #endif 911 927 912 928 // Video tab
Note:
See TracChangeset
for help on using the changeset viewer.