Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
565e66c5
Commit
565e66c5
authored
Dec 31, 2003
by
zorglub
Browse files
Disabled aspect ratio and visualization button as they don't work as expected
parent
c1c2844d
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/wxwindows/interface.cpp
View file @
565e66c5
...
...
@@ -2,7 +2,7 @@
* interface.cpp : wxWindows plugin for vlc
*****************************************************************************
* Copyright (C) 2000-2001, 2003 VideoLAN
* $Id: interface.cpp,v 1.8
0
2003/12/
22 02:24:52 sam
Exp $
* $Id: interface.cpp,v 1.8
1
2003/12/
31 10:30:44 zorglub
Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
...
...
@@ -554,7 +554,7 @@ void Interface::CreateOurExtraPanel()
extra_sizer
->
Add
(
adjust_sizer
,
1
,
wxBOTTOM
,
5
);
#if 0
/* Create sizer to surround the other controls */
wxBoxSizer *other_sizer = new wxBoxSizer( wxVERTICAL );
...
...
@@ -611,6 +611,7 @@ void Interface::CreateOurExtraPanel()
other_sizer->Layout();
extra_sizer->Add(other_sizer,0,wxBOTTOM,5);
#endif
extra_frame
->
SetSizer
(
extra_sizer
);
...
...
@@ -620,13 +621,14 @@ void Interface::CreateOurExtraPanel()
extra_sizer
->
SetSizeHints
(
extra_frame
);
/* Write down initial values */
#if 0
psz_filters = config_GetPsz( p_intf, "audio-filter" );
if( psz_filters && strstr( psz_filters, "visual" ) )
{
visual_checkbox->SetValue(1);
}
if( psz_filters ) free( psz_filters );
#endif
psz_filters
=
config_GetPsz
(
p_intf
,
"filter"
);
if
(
psz_filters
&&
strstr
(
psz_filters
,
"adjust"
)
)
{
...
...
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