Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
62d82a4b
Commit
62d82a4b
authored
Apr 06, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/gui/wxwindows/interface.cpp: use wxBORDER_NONE for the volume control.
parent
4b45cfa2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
modules/gui/wxwindows/interface.cpp
modules/gui/wxwindows/interface.cpp
+4
-2
No files found.
modules/gui/wxwindows/interface.cpp
View file @
62d82a4b
...
...
@@ -416,7 +416,7 @@ END_EVENT_TABLE()
VLCVolCtrl
::
VLCVolCtrl
(
intf_thread_t
*
p_intf
,
wxWindow
*
p_parent
,
wxGauge
**
pp_volctrl
)
:
wxControl
(
p_parent
,
-
1
,
wxDefaultPosition
,
wxSize
(
64
,
16
)
)
:
wxControl
(
p_parent
,
-
1
,
wxDefaultPosition
,
wxSize
(
64
,
16
)
,
wxBORDER_NONE
)
{
*
pp_volctrl
=
new
wxVolCtrl
(
p_intf
,
this
,
-
1
,
wxPoint
(
18
,
0
),
wxSize
(
44
,
16
)
);
...
...
@@ -471,7 +471,9 @@ void Interface::CreateOurToolBar()
wxU
(
_
(
HELP_PLO
))
);
wxControl
*
p_dummy_ctrl
=
new
wxControl
(
toolbar
,
-
1
,
wxDefaultPosition
,
wxSize
(
64
,
16
)
);
new
wxControl
(
toolbar
,
-
1
,
wxDefaultPosition
,
wxSize
(
64
,
16
),
wxBORDER_NONE
);
toolbar
->
AddControl
(
p_dummy_ctrl
);
VLCVolCtrl
*
sound_control
=
new
VLCVolCtrl
(
p_intf
,
toolbar
,
&
volctrl
);
...
...
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