mirror of
https://gitlab.freedesktop.org/wlroots/wlroots.git
synced 2025-12-17 08:56:28 -05:00
Merge branch 'master' into feature/xwm-rewrite
This commit is contained in:
commit
c01248cf17
11 changed files with 232 additions and 135 deletions
|
|
@ -160,6 +160,13 @@ void cursor_update_position(struct roots_input *input, uint32_t time) {
|
|||
width += dx;
|
||||
}
|
||||
|
||||
if (width < 0) {
|
||||
width = 0;
|
||||
}
|
||||
if (height < 0) {
|
||||
height = 0;
|
||||
}
|
||||
|
||||
// TODO we might need one configure event for this
|
||||
if (active_x != input->active_view->x ||
|
||||
active_y != input->active_view->y) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue