Skip to content

Commit

Permalink
fix for global mouse events
Browse files Browse the repository at this point in the history
  • Loading branch information
mimoccc committed Oct 19, 2024
1 parent bddbd31 commit 828fb1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ fun ControlCenter(
size
) {
MouseRange(
x = containerSize.width - size.width,
x = containerSize.width - controlCenterDividerWidth,
y = 0.dp,
width = size.width,
height = containerSize.height
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ fun DesktopPanel(
) {
MouseRange(
x = 0.dp,
y = containerSize.height - size.height,
y = containerSize.height - controlCenterDividerWidth,
width = containerSize.width,
height = size.height
)
Expand Down

0 comments on commit 828fb1a

Please sign in to comment.