Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
83010dc8
Commit
83010dc8
authored
Feb 13, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated macosx intf after teletext-es change.
It is untested.
parent
f04d3e8f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
8 deletions
+1
-8
modules/gui/macosx/controls.m
modules/gui/macosx/controls.m
+1
-8
No files found.
modules/gui/macosx/controls.m
View file @
83010dc8
...
@@ -1041,15 +1041,8 @@
...
@@ -1041,15 +1041,8 @@
if
(
[[
o_mi
title
]
isEqualToString
:
_NS
(
"Normal Size"
)]
);
if
(
[[
o_mi
title
]
isEqualToString
:
_NS
(
"Normal Size"
)]
);
{
{
NSMenuItem
*
item
=
[[
o_mi
menu
]
itemWithTitle
:
_NS
(
"Teletext"
)];
NSMenuItem
*
item
=
[[
o_mi
menu
]
itemWithTitle
:
_NS
(
"Teletext"
)];
bool
b_telx
=
false
;
bool
b_telx
=
p_input
&&
var_GetInteger
(
p_input
,
"teletext-es"
)
>=
0
;
if
(
p_input
)
{
const
int
i_teletext_es
=
var_GetInteger
(
p_input
,
"teletext-es"
);
const
int
i_spu_es
=
var_GetInteger
(
p_input
,
"spu-es"
);
if
(
i_teletext_es
>=
0
&&
i_teletext_es
==
i_spu_es
)
b_telx
=
true
;
}
[[
item
submenu
]
setAutoenablesItems
:
NO
];
[[
item
submenu
]
setAutoenablesItems
:
NO
];
for
(
int
k
=
0
;
k
<
[[
item
submenu
]
numberOfItems
];
k
++
)
for
(
int
k
=
0
;
k
<
[[
item
submenu
]
numberOfItems
];
k
++
)
{
{
...
...
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