Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
d40cfac2
Commit
d40cfac2
authored
Dec 15, 2003
by
hartman
Browse files
* fix the skip 10 seconds buttons availability.
parent
c81245cd
Changes
1
Hide whitespace changes
Inline
Side-by-side
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/1
1
1
9
:3
4:47
hartman Exp $
* $Id: intf.m,v 1.10
6
2003/12/1
5
1
5
:3
8: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