stack: Fix input at bottom of window
This commit is contained in:
parent
61bde9f3b9
commit
e0f78da0ae
1 changed files with 1 additions and 1 deletions
|
|
@ -433,7 +433,7 @@ impl CosmicStack {
|
|||
|| (point_i32.y - geo.loc.y >= -RESIZE_BORDER && point_i32.y - geo.loc.y < 0)
|
||||
|| (point_i32.x - geo.loc.x >= geo.size.w
|
||||
&& point_i32.x - geo.loc.x < geo.size.w + RESIZE_BORDER)
|
||||
|| (point_i32.y - geo.loc.y >= geo.size.h
|
||||
|| (point_i32.y - geo.loc.y >= geo.size.h + TAB_HEIGHT
|
||||
&& point_i32.y - geo.loc.y < geo.size.h + TAB_HEIGHT + RESIZE_BORDER)
|
||||
{
|
||||
stack_ui = Some((
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue