1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-02-10 15:44:41 -05:00

Always queue a redraw on a resize event.

This commit is contained in:
Dave Davenport 2017-01-01 02:27:51 +01:00
parent f43bf3dc6a
commit 0a8bdb6a98

View file

@ -44,6 +44,8 @@ void widget_resize ( widget *widget, short w, short h )
widget->w = w;
widget->h = h;
}
// On a resize we always want to udpate.
widget_queue_redraw ( widget );
}
}
void widget_move ( widget *widget, short x, short y )