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
59d6ab77
Commit
59d6ab77
authored
Dec 27, 2012
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
macosx: adapt fspanel layout to update time slider graphics
parent
a62d8933
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
NEWS
NEWS
+1
-0
modules/gui/macosx/fspanel.m
modules/gui/macosx/fspanel.m
+4
-4
No files found.
NEWS
View file @
59d6ab77
...
...
@@ -115,6 +115,7 @@ Mac OS X Interface:
* add options to the Advanced Open File dialog for start and stop time
* add an option to play videos as a desktop background
* add support for playing video and showing audio visualizations side by side
* improve fullscreen controller time slider with larger click target
* The Streaming/Transcoding wizard and the open dialog's output panel are
deprecated now
...
...
modules/gui/macosx/fspanel.m
View file @
59d6ab77
...
...
@@ -419,9 +419,9 @@
/* time slider */
s_rc
=
[
self
frame
];
s_rc
.
origin
.
x
=
15
;
s_rc
.
origin
.
y
=
5
5
;
s_rc
.
origin
.
y
=
4
5
;
s_rc
.
size
.
width
=
518
;
s_rc
.
size
.
height
=
9
;
s_rc
.
size
.
height
=
13
;
o_fs_timeSlider
=
[[
VLCFSTimeSlider
alloc
]
initWithFrame
:
s_rc
];
[
o_fs_timeSlider
setMinValue
:
0
];
[
o_fs_timeSlider
setMaxValue
:
10000
];
...
...
@@ -603,7 +603,7 @@
addImage
(
o_vol_sld_img
,
26
,
23
,
NSCompositeSourceOver
);
addImage
(
o_vol_mute_img
,
16
,
18
,
NSCompositeSourceOver
);
addImage
(
o_vol_max_img
,
124
,
18
,
NSCompositeSourceOver
);
addImage
(
o_time_sld_img
,
15
,
53
,
NSCompositeSourceOver
);
addImage
(
o_time_sld_img
,
15
,
45
,
NSCompositeSourceOver
);
}
@end
...
...
@@ -634,7 +634,7 @@
[[
NSGraphicsContext
currentContext
]
restoreGraphicsState
];
NSRect
knobRect
=
[[
self
cell
]
knobRectFlipped
:
NO
];
knobRect
.
origin
.
y
+=
7
.
5
;
knobRect
.
origin
.
y
+=
4
;
[[[
NSColor
blackColor
]
colorWithAlphaComponent
:
0
.
6
]
set
];
[
self
drawKnobInRect
:
knobRect
];
}
...
...
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