TPopup menu layouts (Icons/Bitmaps, text alignment, three dots…) are reversed from left-to-right to right-to-left after migrating my source code from D7 to D2007. My system language is English.
I tried to add the new BiDiMode setting like this, but it does not seem to fix the issue.
Any ideas, how to get the menu icons back to the left side?
The popup menu is created like this, without a reference to a form:
Popup = TpopupMenu.create(nil);
Popup.BiDiMode := bdLeftToRight;
TrayIcon.PopupMenu := Popup;
2