On Mon, 5 Aug 2024 11:52:45 GMT, Ravi Gupta <rgu...@openjdk.org> wrote:

> when form Frame.ICONIFIED to Frame.NORMAL componentMoved and componentResized 
> events are triggered

Then verify that these events are triggered:


-        if (componentShown || componentHidden) {
+        if (componentShown || componentHidden || !componentMoved
+            || !componentResized) {

Otherwise it looks as if you forgot to test something. You may have two `if` 
statements to print more precise error message.

-------------

PR Review Comment: https://git.openjdk.org/jdk/pull/19521#discussion_r1744049100

Reply via email to