toytoolkit: don't ignore resizes with negative width or height
E.g. this can happen when you grab the lower right corner of a window and move over the top of the window when resizing. In this case, the changed width is still important and should be acted upon. https://bugs.freedesktop.org/show_bug.cgi?id=53560
This commit is contained in:
committed by
Kristian Høgsberg
parent
4f5217313e
commit
5418a904ca
@@ -2691,9 +2691,6 @@ handle_configure(void *data, struct wl_shell_surface *shell_surface,
|
|||||||
{
|
{
|
||||||
struct window *window = data;
|
struct window *window = data;
|
||||||
|
|
||||||
if (width <= 0 || height <= 0)
|
|
||||||
return;
|
|
||||||
|
|
||||||
window->resize_edges = edges;
|
window->resize_edges = edges;
|
||||||
window_schedule_resize(window, width, height);
|
window_schedule_resize(window, width, height);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user