This ensures that multiple consecutive reconfigure calls with the same
size won't reset the flag to false and prevent resize signal emission.
void Window::reconfigure(const WindowOptions &opts)
{
bool fullscreen_changed = (opts.fullscreen!=options.fullscreen);
- resizing = (opts.width!=options.width || opts.height!=options.height);
+ if(opts.width!=options.width || opts.height!=options.height)
+ resizing = true;
if(visible)
{