Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Steve Lhomme
vlc
Commits
49cf899b
Commit
49cf899b
authored
Jan 26, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wxwidget: fix #2444 (I just don't want to leave on stupid bug open)
parent
c4f8422a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
modules/gui/wxwidgets/extrapanel.cpp
modules/gui/wxwidgets/extrapanel.cpp
+1
-1
No files found.
modules/gui/wxwidgets/extrapanel.cpp
View file @
49cf899b
...
...
@@ -799,7 +799,7 @@ void ExtraPanel::OnChangeEqualizer( wxScrollEvent &event )
{
char
psz_val
[
5
];
float
f_val
=
(
float
)(
400
-
band_sliders
[
i
]
->
GetValue
()
)
/
10
-
20
;
sprintf
(
psz_values
,
"%s %f"
,
psz_values
,
f_val
);
sprintf
(
psz_values
+
strlen
(
psz_value
),
" %f"
,
f_val
);
sprintf
(
psz_val
,
"%.1f"
,
f_val
);
band_texts
[
i
]
->
SetLabel
(
band_frequencies
[
i
]
+
wxT
(
"
\n
"
)
+
wxU
(
psz_val
)
+
wxT
(
"dB"
)
);
...
...
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