Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
4716b708
Commit
4716b708
authored
Nov 25, 2015
by
Ian Hickson
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #582 from Hixie/bad-opacity
Opacity was dropping stuff on the floor.
parents
83baf84e
9c5c5115
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
object.dart
packages/flutter/lib/src/rendering/object.dart
+6
-2
No files found.
packages/flutter/lib/src/rendering/object.dart
View file @
4716b708
...
...
@@ -59,7 +59,11 @@ typedef void PaintingContextCallback(PaintingContext context, Offset offset);
/// not hold a reference to the canvas across operations that might paint
/// child render objects.
class
PaintingContext
{
PaintingContext
.
_
(
this
.
_containerLayer
,
this
.
_paintBounds
);
PaintingContext
.
_
(
this
.
_containerLayer
,
this
.
_paintBounds
)
{
assert
(
_containerLayer
!=
null
);
assert
(
_paintBounds
!=
null
);
assert
(!
_paintBounds
.
isEmpty
);
}
final
ContainerLayer
_containerLayer
;
final
Rect
_paintBounds
;
...
...
@@ -304,7 +308,7 @@ class PaintingContext {
_stopRecordingIfNeeded
();
OpacityLayer
opacityLayer
=
new
OpacityLayer
(
bounds:
bounds
,
alpha:
alpha
);
_appendLayer
(
opacityLayer
,
offset
);
PaintingContext
childContext
=
new
PaintingContext
.
_
(
opacityLayer
,
b
ounds
);
PaintingContext
childContext
=
new
PaintingContext
.
_
(
opacityLayer
,
_paintB
ounds
);
painter
(
childContext
,
Offset
.
zero
);
childContext
.
_stopRecordingIfNeeded
();
}
else
{
...
...
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