Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
4f796a17
Commit
4f796a17
authored
May 14, 2005
by
Antoine Cellerier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fix mute button for real (... just needed to copy 4 lines 1 function
down but took me 2 hours to understand) Closes #106
parent
9ded3498
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
modules/gui/wxwindows/interface.cpp
modules/gui/wxwindows/interface.cpp
+6
-0
No files found.
modules/gui/wxwindows/interface.cpp
View file @
4f796a17
...
...
@@ -352,6 +352,7 @@ void Interface::Update()
{
/* Misc updates */
((
VLCVolCtrl
*
)
volctrl
)
->
UpdateVolume
();
}
void
Interface
::
OnControlEvent
(
wxCommandEvent
&
event
)
...
...
@@ -1454,7 +1455,12 @@ void VLCVolCtrl::OnChange( wxMouseEvent& event )
void
VLCVolCtrl
::
UpdateVolume
()
{
int
i_volume
;
gauge
->
UpdateVolume
();
i_volume
=
(
audio_volume_t
)
config_GetInt
(
p_intf
,
"volume"
);
if
(
i_volume
==
0
)
b_mute
=
1
;
else
b_mute
=
0
;
Refresh
();
}
/*****************************************************************************
...
...
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