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
3ad6ea96
Commit
3ad6ea96
authored
May 09, 2008
by
Pavlov Konstantin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
OSX GUI: Use "Fullscreen Video Device" instead of "Video Device" which is a bit confusing.
parent
21efc7ca
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+2
-2
modules/gui/macosx/vout.m
modules/gui/macosx/vout.m
+1
-1
No files found.
modules/gui/macosx/intf.m
View file @
3ad6ea96
...
@@ -734,8 +734,8 @@ static VLCMain *_o_sharedMainInstance = nil;
...
@@ -734,8 +734,8 @@ static VLCMain *_o_sharedMainInstance = nil;
[
o_mu_aspect_ratio
setTitle
:
_NS
(
"Aspect-ratio"
)];
[
o_mu_aspect_ratio
setTitle
:
_NS
(
"Aspect-ratio"
)];
[
o_mi_crop
setTitle
:
_NS
(
"Crop"
)];
[
o_mi_crop
setTitle
:
_NS
(
"Crop"
)];
[
o_mu_crop
setTitle
:
_NS
(
"Crop"
)];
[
o_mu_crop
setTitle
:
_NS
(
"Crop"
)];
[
o_mi_screen
setTitle
:
_NS
(
"Video Device"
)];
[
o_mi_screen
setTitle
:
_NS
(
"
Fullscreen
Video Device"
)];
[
o_mu_screen
setTitle
:
_NS
(
"Video Device"
)];
[
o_mu_screen
setTitle
:
_NS
(
"
Fullscreen
Video Device"
)];
[
o_mi_subtitle
setTitle
:
_NS
(
"Subtitles Track"
)];
[
o_mi_subtitle
setTitle
:
_NS
(
"Subtitles Track"
)];
[
o_mu_subtitle
setTitle
:
_NS
(
"Subtitles Track"
)];
[
o_mu_subtitle
setTitle
:
_NS
(
"Subtitles Track"
)];
[
o_mi_deinterlace
setTitle
:
_NS
(
"Deinterlace"
)];
[
o_mi_deinterlace
setTitle
:
_NS
(
"Deinterlace"
)];
...
...
modules/gui/macosx/vout.m
View file @
3ad6ea96
...
@@ -194,7 +194,7 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
...
@@ -194,7 +194,7 @@ int DeviceCallback( vlc_object_t *p_this, const char *psz_variable,
var_Create
(
p_real_vout
,
"video-device"
,
VLC_VAR_INTEGER
|
var_Create
(
p_real_vout
,
"video-device"
,
VLC_VAR_INTEGER
|
VLC_VAR_HASCHOICE
);
VLC_VAR_HASCHOICE
);
text
.
psz_string
=
_
(
"Video Device"
);
text
.
psz_string
=
_
(
"
Fullscreen
Video Device"
);
var_Change
(
p_real_vout
,
"video-device"
,
VLC_VAR_SETTEXT
,
&
text
,
NULL
);
var_Change
(
p_real_vout
,
"video-device"
,
VLC_VAR_SETTEXT
,
&
text
,
NULL
);
NSEnumerator
*
o_enumerator
=
[
o_screens
objectEnumerator
];
NSEnumerator
*
o_enumerator
=
[
o_screens
objectEnumerator
];
...
...
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