Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
636019fc
Commit
636019fc
authored
Apr 17, 2012
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qt4: remove --qt-autosave-volume
Qt4 is only one of several views to the playlist.
parent
b0fdf364
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
1 addition
and
8 deletions
+1
-8
modules/gui/qt4/components/simple_preferences.cpp
modules/gui/qt4/components/simple_preferences.cpp
+1
-1
modules/gui/qt4/input_manager.cpp
modules/gui/qt4/input_manager.cpp
+0
-3
modules/gui/qt4/qt4.cpp
modules/gui/qt4/qt4.cpp
+0
-4
No files found.
modules/gui/qt4/components/simple_preferences.cpp
View file @
636019fc
...
...
@@ -333,7 +333,7 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
CONNECT
(
ui
.
defaultVolume
,
valueChanged
(
int
),
this
,
updateAudioVolume
(
int
)
);
CONFIG_BOOL
(
"
qt-autosave-volum
e"
,
keepVolumeRadio
);
CONFIG_BOOL
(
"
volume-sav
e"
,
keepVolumeRadio
);
ui
.
defaultVolume_zone
->
setEnabled
(
ui
.
resetVolumeRadio
->
isChecked
()
);
CONNECT
(
ui
.
resetVolumeRadio
,
toggled
(
bool
),
ui
.
defaultVolume_zone
,
setEnabled
(
bool
)
);
...
...
modules/gui/qt4/input_manager.cpp
View file @
636019fc
...
...
@@ -982,9 +982,6 @@ MainInputManager::~MainInputManager()
config_PutInt
(
p_intf
,
"random"
,
var_GetBool
(
THEPL
,
"random"
)
);
config_PutInt
(
p_intf
,
"loop"
,
var_GetBool
(
THEPL
,
"loop"
)
);
config_PutInt
(
p_intf
,
"repeat"
,
var_GetBool
(
THEPL
,
"repeat"
)
);
if
(
var_InheritBool
(
p_intf
,
"qt-autosave-volume"
)
)
config_PutInt
(
p_intf
,
"volume"
,
aout_VolumeGet
(
THEPL
)
);
}
vout_thread_t
*
MainInputManager
::
getVout
()
...
...
modules/gui/qt4/qt4.cpp
View file @
636019fc
...
...
@@ -125,8 +125,6 @@ static void ShowDialog ( intf_thread_t *, int, int, intf_dialog_args_t * );
"two weeks." )
#define UPDATER_DAYS_TEXT N_("Number of days between two update checks")
#define SAVEVOL_TEXT N_( "Automatically save the volume on exit" )
#define PRIVACY_TEXT N_( "Ask for network policy at start" )
#define RECENTPLAY_TEXT N_( "Save the recently played items in the menu" )
...
...
@@ -245,8 +243,6 @@ vlc_module_begin ()
UPDATER_DAYS_TEXT
,
UPDATER_DAYS_TEXT
,
false
)
#endif
add_bool
(
"qt-autosave-volume"
,
true
,
SAVEVOL_TEXT
,
SAVEVOL_TEXT
,
true
)
#ifdef WIN32
add_bool
(
"qt-disable-volume-keys"
/* name */
,
true
/* default value */
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment