10-21-2024, 03:56 AM
That's actually not simple at all from an implementation perspective given how the code is architected at the moment, because not every new line should be right-indented with what you are asking for, but I don't distinguish between lines that were wrapped and the normal next line. I'm basically just popping lines off a stack and processing them one by one, and if a line has to be broken, I just add the remainder back on top of the stack and process it as if it's a new line. So I would need to add a property to each line to track whether or not it was created due to wrapped text and then check that when processing to figure out how to handle the alignment. I would also have to go into many different sections of code to adjust both the measurements and calculations for the render offsets to make them right-aligned. So I'm not opposed to eventually supporting this, but it would not be a small feature.
As far as the dialog size on Android, it's definitely not maximized for me. If the advanced settings are toggled off, it takes up a small section of the screen and I can see the text around it. If you enable the advanced settings, the dialog height is significantly increased to make use of the available screen space, and I prefer that over having to shrink the dialog and make it scrollable (as users may not immediately register that it's scrollable). In either case, when I switch to the new settings UI you have asked for, that's all going to be on an entirely new screen and the score won't be visible at all due to the large number of settings that have to be made available.
Mike
As far as the dialog size on Android, it's definitely not maximized for me. If the advanced settings are toggled off, it takes up a small section of the screen and I can see the text around it. If you enable the advanced settings, the dialog height is significantly increased to make use of the available screen space, and I prefer that over having to shrink the dialog and make it scrollable (as users may not immediately register that it's scrollable). In either case, when I switch to the new settings UI you have asked for, that's all going to be on an entirely new screen and the score won't be visible at all due to the large number of settings that have to be made available.
Mike