Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
d40cfac2
Commit
d40cfac2
authored
Dec 15, 2003
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fix the skip 10 seconds buttons availability.
parent
c81245cd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+4
-4
No files found.
modules/gui/macosx/intf.m
View file @
d40cfac2
...
...
@@ -2,7 +2,7 @@
* intf.m: MacOS X interface plugin
*****************************************************************************
* Copyright (C) 2002-2003 VideoLAN
* $Id: intf.m,v 1.10
5 2003/12/11 19:34:47
hartman Exp $
* $Id: intf.m,v 1.10
6 2003/12/15 15:38:26
hartman Exp $
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Christophe Massiot <massiot@via.ecp.fr>
...
...
@@ -738,7 +738,7 @@ unsigned int VLCModifiersToCocoa( unsigned int i_key )
/* seekable streams */
b_seekable
=
p_input
->
stream
.
b_seekable
;
/* c
ontrol buttons for free pace streams
*/
/* c
heck wether slow/fast motion is possible
*/
b_control
=
p_input
->
stream
.
b_pace_control
;
/* chapters & titles */
...
...
@@ -748,8 +748,8 @@ unsigned int VLCModifiersToCocoa( unsigned int i_key )
}
[
o_btn_stop
setEnabled
:
b_input
];
[
o_btn_ff
setEnabled
:
b_
control
];
[
o_btn_rewind
setEnabled
:
b_
control
];
[
o_btn_ff
setEnabled
:
b_
seekable
];
[
o_btn_rewind
setEnabled
:
b_
seekable
];
[
o_btn_prev
setEnabled
:
(
b_plmul
||
b_chapters
)];
[
o_btn_next
setEnabled
:
(
b_plmul
||
b_chapters
)];
...
...
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