Formatter Options - cannot find suitable option

With Toad for Oracle 16.2.98.1741 when I format my code in Editor with Toad's Formatter, I can't get "ORDER BY" into new line if subquery is in brackets and UNION is present (see example queries below), like it is with Toad for Oracle 16.0.90.1509;
I tried to change a lot of Formatter Options in 16.2, however without success.

-- formatted with 16.0 - query with UNION - ORDER BY in new line
/* Formatted on 12/12/2022 13:34:18 (QP5 v5.381) */
BEGIN
    FOR r_row IN (SELECT 'a' data_d, 0 sort
                    FROM dual
                   WHERE 1 = 1
                  UNION
                  SELECT 'b' data_d, 1 sort
                    FROM dual
                   WHERE 2 = 2
                  ORDER BY sort)
    LOOP
        NULL;
    END LOOP;

    RETURN NULL;
EXCEPTION
    WHEN OTHERS
    THEN
        RETURN NULL;
END;

-- formatted with 16.2 - query with UNION - ORDER BY not in new line
/* Formatted on 12/12/2022 13:00:05 (QP5 v5.391) */
BEGIN
    FOR r_row IN (SELECT 'a' data_d, 0 sort
                    FROM dual
                   WHERE 1 = 1
                  UNION
                  SELECT 'b' data_d, 1 sort
                    FROM dual
                   WHERE 2 = 2 ORDER BY sort)
    LOOP
        NULL;
    END LOOP;

    RETURN NULL;
EXCEPTION
    WHEN OTHERS
    THEN
        RETURN NULL;
END;

-- formatted with 16.2 - query without UNION - ORDER BY in new line
/* Formatted on 12/12/2022 12:58:43 (QP5 v5.391) */
BEGIN
    FOR r_row IN (  SELECT 'b' data_d, 1 sort
                      FROM dual
                     WHERE 2 = 2
                  ORDER BY sort)
    LOOP
        NULL;
    END LOOP;

    RETURN NULL;
EXCEPTION
    WHEN OTHERS
    THEN
        RETURN NULL;
END;

Hmmm... There could have been some changes made to the formatting engine, but until Quest dev members confirm, I wonder if this might help:
If you still have your Toad 16.0.x version installed, save the formatting options, and then import them into your 16.2.x. version, and see if you can't get your desired formatting?

Gary there is a regression in 5.384. I'm currently looking into this.

Andre

Fixed. (QP-4034)
Will appear in drop 5.393, somewhere this week.

Mart.tars thanks for reporting!
Andre

I did this too and didn't help - so thanks for the fix.

Echo that... thanks Quest Dev