Skip to content

Commit

Permalink
chore: revert unwanted changes
Browse files Browse the repository at this point in the history
  • Loading branch information
squidrye committed Oct 24, 2023
1 parent 159dc8a commit 3e028b2
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -352,9 +352,6 @@ class _HomeBodyState extends State<HomeBody> {
builder: (_, value, __) => Stack(
children: [
GestureDetector(
behavior: HitTestBehavior.opaque,
onTap: () {},
onTapDown: (d) {},
child: Listener(
behavior: HitTestBehavior.translucent,
onPointerPanZoomUpdate: (event) {
Expand Down Expand Up @@ -385,9 +382,12 @@ class _HomeBodyState extends State<HomeBody> {
});
}
},
child: Opacity(
opacity: 0.5,
child: _buildWidgetStack(onDeleted: widget.onDeleted),
child: IgnorePointer(
ignoring: value,
child: Opacity(
opacity: 0.5,
child: _buildWidgetStack(onDeleted: widget.onDeleted),
),
),
),
),
Expand Down

0 comments on commit 3e028b2

Please sign in to comment.