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
0759676c
Commit
0759676c
authored
Jan 08, 2010
by
Francois Cartegnie
Committed by
Rémi Denis-Courmont
Jan 10, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: update widget initialization
Signed-off-by:
Rémi Denis-Courmont
<
remi@remlab.net
>
parent
4704ae3f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
4 deletions
+2
-4
modules/gui/qt4/components/controller_widget.cpp
modules/gui/qt4/components/controller_widget.cpp
+2
-4
No files found.
modules/gui/qt4/components/controller_widget.cpp
View file @
0759676c
...
@@ -111,11 +111,9 @@ SoundWidget::SoundWidget( QWidget *_parent, intf_thread_t * _p_intf,
...
@@ -111,11 +111,9 @@ SoundWidget::SoundWidget( QWidget *_parent, intf_thread_t * _p_intf,
layout
->
addWidget
(
volumeSlider
,
0
,
Qt
::
AlignBottom
);
layout
->
addWidget
(
volumeSlider
,
0
,
Qt
::
AlignBottom
);
/* Set the volume from the config */
/* Set the volume from the config */
volumeSlider
->
setValue
(
qRound
(
(
(
qreal
)
config_GetInt
(
p_intf
,
"volume"
)
)
*
libUpdateVolume
();
VOLUME_MAX
/
(
AOUT_VOLUME_MAX
/
2
)
)
);
/* Force the update at build time in order to have a muted icon if needed */
/* Force the update at build time in order to have a muted icon if needed */
u
serUpdateVolume
(
volumeSlider
->
value
()
);
u
pdateMuteStatus
(
);
/* Volume control connection */
/* Volume control connection */
CONNECT
(
volumeSlider
,
valueChanged
(
int
),
this
,
refreshLabels
(
void
)
);
CONNECT
(
volumeSlider
,
valueChanged
(
int
),
this
,
refreshLabels
(
void
)
);
...
...
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