Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mahara-flashplayer
mahara-flashplayer
Commits
d3a22a9e
Commit
d3a22a9e
authored
Sep 11, 2012
by
Daniel Rossi
Browse files
- #20 for the free player swap the logo with the stage video mask to display underneath not on top.
parent
8ac9a5a8
Changes
2
Hide whitespace changes
Inline
Side-by-side
core/README.txt
View file @
d3a22a9e
...
...
@@ -9,6 +9,7 @@ Version history:
- #15 fixes for #627, handle the display init on startup.
- #615 dispatch begin if in paused mode too early.
- #629 if start has been dispatched already prevent dispatching many begin events.
- #20 for the free player swap the logo with the stage video mask to display underneath not on top.
3.2.13
------
...
...
core/src/actionscript/org/flowplayer/view/Launcher.as
View file @
d3a22a9e
...
...
@@ -775,7 +775,12 @@ import org.flowplayer.model.DisplayPluginModel;
if
(
!
contains
(
_screenMask
)
)
{
//#508 stage video mask was being added to the top layer and hiding all children.
addChildAt
(
_screenMask
,
0
)
;
//addChildAt(_screenMask, _canvasLogo ? getChildIndex(_canvasLogo) + 1 : 1);
//#20 for the free player swap the logo with the stage video mask to display underneath not on top.
CONFIG
::
freeVersion
{
swapChildren
(
_screenMask
,
_canvasLogo
)
;
}
//addChildAt(_screenMask, _canvasLogo ? 1 : 0);
log
.
debug
(
"adding mask"
)
;
}
...
...
Write
Preview
Supports
Markdown
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