On Windows platform, with the VCL, when we want to add a separator in a menu, we add a TMenuItem
with a Caption := '-'
;
With FireMonkey, we add a TMenuItem
with a Text := '-'
;
It works as expected on Windows platform, the item with the Text='-' is displayed as a separator.
But, when I run the same application on OSX, I have the minus sign visible...
I haven't found any property on the TMenuItem
to specify it is a separator...
I have tried with a TMainMenu
and a TMenuBar
(UseOSMenu := True|False;
) and I still have this issue.
Any idea to create a real separator? (otherwise, I will check the OS and remove it if OSX...)