On High-DPI screens the arrow button of the TdxBarSubItem component does not seem to scale properly. The higher the DPI value, the larger the arrow size. This goes both for an item in a menu and an item on a toolbar.
We have perhaps found a fix by modifying the TdxBarButtonLikeControl.CalcDrawParams procedure. It calculates the ArrowSize as follows:
DrawParams.ArrowSize := cxGetValueCurrentDPI(cxSize(w, h));
Assuming that this scales a width and height that is already scaled, we removed the cxGetValueCurrentDPI conversion:
DrawParams.ArrowSize := cxSize(w, h);
The results can be seen in the attached picture (left = before, right = after). This is on a 240 DPI notebook screen (15.6", 3840 x 2160).
Can you confirm that this fix is correct, and if so, add it in a future release?
If the is not correct , can you investigate and let us know your findings?
Thanks in advance.
Hans Kalter
Allround Automations
Hello,
Thank you for your report. I have forwarded this ticket to our developers.
At first glance, your fix looks correct. Moreover, I think that we might fix this problem the same way.
Would you mind if I publish the content of this ticket? I can remove your attachment if necessary.
Thanks. Feel free to publish the contents of this ticket.
Thanks. Published.