gtkDcoding icon indicating copy to clipboard operation
gtkDcoding copied to clipboard

incorrect determination of the maximum window status

Open Yaisis opened this issue 4 years ago • 0 comments

In the following example: window_001_13_alt_window_stats.d This code does not work correctly:

	if(isMaximized())
	{
		_isMaximized = true;
	}
	else
	{
		_isMaximized = false;
	}

Because the window status changes outside of the "onConfigureEvent" handler. And this handler is not always called when the window status changes.

Yaisis avatar Sep 08 '20 19:09 Yaisis