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
8f103bdb
Commit
8f103bdb
authored
Jan 22, 2003
by
Derk-Jan Hartman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ALL: fixed a small bug in the timeslider code
parent
69945cce
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
modules/gui/macosx/intf.m
modules/gui/macosx/intf.m
+6
-2
No files found.
modules/gui/macosx/intf.m
View file @
8f103bdb
...
...
@@ -2,7 +2,7 @@
* intf.m: MacOS X interface plugin
*****************************************************************************
* Copyright (C) 2002-2003 VideoLAN
* $Id: intf.m,v 1.
29 2003/01/22 01:48:06
hartman Exp $
* $Id: intf.m,v 1.
30 2003/01/22 02:39:33
hartman Exp $
*
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Christophe Massiot <massiot@via.ecp.fr>
...
...
@@ -1056,6 +1056,11 @@ static void Run( intf_thread_t *p_intf )
{
switch
(
[[
NSApp
currentEvent
]
type
]
)
{
case
NSLeftMouseDown
:
f_slider
=
[
sender
floatValue
];
[
self
displayTime
];
break
;
case
NSLeftMouseDragged
:
f_slider
=
[
sender
floatValue
];
[
self
displayTime
];
...
...
@@ -1067,7 +1072,6 @@ static void Run( intf_thread_t *p_intf )
intf_thread_t
*
p_intf
=
[
NSApp
getIntf
];
input_thread_t
*
p_input
=
p_intf
->
p_sys
->
p_input
;
vlc_mutex_unlock
(
&
p_input
->
stream
.
stream_lock
);
vlc_object_release
(
p_input
);
break
;
default:
...
...
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