Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
95160e3a
Commit
95160e3a
authored
Jan 06, 2008
by
Pierre d'Herbemont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MacOSX: Correctly interprets fillscreen.
parent
8d9dc3d6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
extras/MacOSX/Framework/Sources/VLCVideoCommon.m
extras/MacOSX/Framework/Sources/VLCVideoCommon.m
+1
-1
extras/MacOSX/VLC_app/Sources/VLCMainWindow.m
extras/MacOSX/VLC_app/Sources/VLCMainWindow.m
+1
-1
No files found.
extras/MacOSX/Framework/Sources/VLCVideoCommon.m
View file @
95160e3a
...
...
@@ -50,7 +50,7 @@
CGFloat
xRatio
=
CGRectGetWidth
(
bounds
)
/
originalVideoSize
.
width
;
CGFloat
yRatio
=
CGRectGetHeight
(
bounds
)
/
originalVideoSize
.
height
;
CGFloat
ratio
=
fillScreenEntirely
?
M
IN
(
xRatio
,
yRatio
)
:
MA
X
(
xRatio
,
yRatio
);
CGFloat
ratio
=
fillScreenEntirely
?
M
AX
(
xRatio
,
yRatio
)
:
MI
X
(
xRatio
,
yRatio
);
videoRect
.
size
.
width
=
ratio
*
originalVideoSize
.
width
;
videoRect
.
size
.
height
=
ratio
*
originalVideoSize
.
height
;
...
...
extras/MacOSX/VLC_app/Sources/VLCMainWindow.m
View file @
95160e3a
...
...
@@ -209,7 +209,7 @@
[
mediaListItemsCount
bind
:
@"displayPatternValue1"
toObject
:
mediaArrayController
withKeyPath
:
@"arrangedObjects.@count"
options
:
[
NSDictionary
dictionaryWithObject
:
@"%{value1}@ items"
forKey
:
NSDisplayPatternBindingOption
]];
[
mediaListItemFetchedStatus
bind
:
@"animate"
toObject
:
categoriesTreeController
withKeyPath
:
@"selection.currentlyFetchingItems"
options
:
[
NSDictionary
dictionaryWithObject
:
@"%{value1}@ items"
forKey
:
NSDisplayPatternBindingOption
]];
[
fillScreenButton
bind
:
@"value"
toObject
:
videoView
withKeyPath
:
@"fillScreen"
options
:
[
NSDictionary
dictionaryWithObject
:
NSNegateBooleanTransformerName
forKey
:
NSValueTransformerNameBindingOption
]
];
[
fillScreenButton
bind
:
@"value"
toObject
:
videoView
withKeyPath
:
@"fillScreen"
options
:
nil
];
[
fullScreenButton
bind
:
@"value"
toObject
:
videoView
withKeyPath
:
@"fullScreen"
options
:
nil
];
[
fullScreenButton
bind
:
@"enabled"
toObject
:
mediaPlayer
withKeyPath
:
@"playing"
options
:
nil
];
[
fillScreenButton
bind
:
@"enabled"
toObject
:
mediaPlayer
withKeyPath
:
@"playing"
options
:
nil
];
...
...
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