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
a91d3a78
Commit
a91d3a78
authored
Apr 12, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wxwidgets: Comments cleanup for previous commit.
parent
756b4216
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/gui/wxwidgets/interface.cpp
modules/gui/wxwidgets/interface.cpp
+4
-4
No files found.
modules/gui/wxwidgets/interface.cpp
View file @
a91d3a78
...
...
@@ -517,7 +517,6 @@ void Interface::Init()
void
Interface
::
Update
()
{
/* Misc updates */
// if( !(i_update_counter % 10) ) ((VLCVolCtrl *)volctrl)->UpdateVolume();
if
(
playlist_manager
)
playlist_manager
->
Update
();
...
...
@@ -1223,8 +1222,8 @@ void Interface::SyncVolume()
audio_volume_t
i_volume
;
aout_VolumeGet
(
p_intf
,
&
i_volume
);
//
Updating the Mute Button... IF the slider is completely moved to the left,
// the mute icon is shown too.
/*
Updating the Mute Button... IF the slider is completely moved to the left,
* the mute icon is shown too. */
p_tool
->
SetNormalBitmap
(
wxBitmap
(
i_volume
?
speaker_xpm
:
speaker_mute_xpm
)
);
GetToolBar
()
->
Realize
();
#if defined( __WXMSW__ )
...
...
@@ -1233,7 +1232,8 @@ void Interface::SyncVolume()
GetToolBar
()
->
GetSize
().
GetHeight
()
);
GetToolBar
()
->
Update
();
#endif
// the Toggle to true and false is nescessary; otherwise, the Icon is not repainted
/* the Toggle to true and false is nescessary; otherwise, the Icon
* is not repainted */
GetToolBar
()
->
ToggleTool
(
ToggleMute_Event
,
true
);
GetToolBar
()
->
ToggleTool
(
ToggleMute_Event
,
false
);
GetToolBar
()
->
Update
();
...
...
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