Skip to content

Commit

Permalink
LandscapeLayout: fix resize indicator color (#300)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jupi007 committed Oct 13, 2022
1 parent 030b696 commit 7462fc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/layouts/yaru_landscape_layout.dart
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ class _YaruLandscapeLayoutState extends State<YaruLandscapeLayout> {
child: AnimatedContainer(
duration: _kLeftPaneResizingRegionAnimationDuration,
color: _isHovering || _isDragging
? DividerTheme.of(context).color
? Theme.of(context).dividerColor
: Colors.transparent,
child: MouseRegion(
cursor: SystemMouseCursors.resizeColumn,
Expand Down

0 comments on commit 7462fc9

Please sign in to comment.