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
7b6a20bb
Commit
7b6a20bb
authored
Dec 27, 2012
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx/CAS: fix incorrect channel name field activation in stream panel
parent
bc4b7944
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
modules/gui/macosx/ConvertAndSave.m
modules/gui/macosx/ConvertAndSave.m
+2
-3
No files found.
modules/gui/macosx/ConvertAndSave.m
View file @
7b6a20bb
...
...
@@ -496,8 +496,6 @@ static VLCConvertAndSave *_o_sharedInstance = nil;
[
_stream_rtsp_ckb
setEnabled
:
YES
];
[
_stream_http_ckb
setEnabled
:
YES
];
[
_stream_sdp_ckb
setEnabled
:
YES
];
[
_stream_channel_fld
setEnabled
:
YES
];
[
_stream_sdp_fld
setEnabled
:[
_stream_sdp_ckb
state
]];
}
else
{
// UDP
[
_stream_ttl_fld
setEnabled
:
YES
];
[
_stream_ttl_stepper
setEnabled
:
YES
];
...
...
@@ -505,12 +503,13 @@ static VLCConvertAndSave *_o_sharedInstance = nil;
[
_stream_rtsp_ckb
setEnabled
:
NO
];
[
_stream_http_ckb
setEnabled
:
NO
];
[
_stream_sdp_ckb
setEnabled
:
NO
];
[
_stream_channel_fld
setEnabled
:
YES
];
}
[
self
streamAnnouncementToggle
:
sender
];
}
-
(
IBAction
)
streamAnnouncementToggle
:(
id
)
sender
{
[
_stream_channel_fld
setEnabled
:([
_stream_http_ckb
state
]
||
[
_stream_rtsp_ckb
state
]
||
[
_stream_sap_ckb
state
])
&&
([
_stream_http_ckb
isEnabled
]
||
[
_stream_rtsp_ckb
isEnabled
]
||
[
_stream_sap_ckb
isEnabled
])];
[
_stream_sdp_fld
setEnabled
:[
_stream_sdp_ckb
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