Java builder indents not working

Hi, 

I have code that looks like this after autoformat:
Inner inner =
    Inner.builder().id(1L).name("John").surname("Doe").active(true).age((short) 30).score(95.5).description(
        "A sample description").rating(4.5f).build();

and this code style setting:
 


Anyone know why this does not work? Seems like this is exactly the place where I should be able to set this. 
I need the code to format like this:
Inner inner = 
    Inner.builder()
        .id(1L)
        .name("John")
        .surname("Doe")
        .active(true)
        .age((short) 30)
        .score(95.5)
        .description("A sample description")
        .rating(4.5f)
        .build();

IntelliJ IDEA 2024.1.3 (Ultimate Edition)

0

请先登录再写评论。