Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
25316fbf
Commit
25316fbf
authored
Dec 25, 2012
by
David Fuhrmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: video effects panel: only allow to activate clone XOR wall
Clone and wall is not supported yet.
parent
803b6303
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
0 deletions
+10
-0
modules/gui/macosx/VideoEffects.m
modules/gui/macosx/VideoEffects.m
+10
-0
No files found.
modules/gui/macosx/VideoEffects.m
View file @
25316fbf
...
...
@@ -1050,6 +1050,11 @@ static VLCVideoEffects *_o_sharedInstance = nil;
{
BOOL
b_state
=
[
o_clone_ckb
state
];
if
(
b_state
&&
[
o_wall_ckb
state
])
{
[
o_wall_ckb
setState
:
NSOffState
];
[
self
enableWall
:
o_wall_ckb
];
}
[
self
setVideoFilter
:
"clone"
on
:
b_state
];
[
o_clone_number_lbl
setEnabled
:
b_state
];
[
o_clone_number_fld
setEnabled
:
b_state
];
...
...
@@ -1065,6 +1070,11 @@ static VLCVideoEffects *_o_sharedInstance = nil;
{
BOOL
b_state
=
[
o_wall_ckb
state
];
if
(
b_state
&&
[
o_clone_ckb
state
])
{
[
o_clone_ckb
setState
:
NSOffState
];
[
self
enableClone
:
o_clone_ckb
];
}
[
self
setVideoFilter
:
"wall"
on
:
b_state
];
[
o_wall_numofcols_fld
setEnabled
:
b_state
];
[
o_wall_numofcols_stp
setEnabled
:
b_state
];
...
...
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