Hi guys,
I'm having an issue creating attribute panel control names that include the degree symbol "º".
For example, when creating a button control with the following Maxon string:
Example A (works):
const char* name_char = "Slope 90";
maxon::String name_maxon(name_char);
Example B (fails – button name is blank):
const char* name_char = "Slope 90º";
maxon::String name_maxon(name_char);
The name_char variable is just for testing purposes. In the actual application, the string is read from the file system.
The name_maxon string is then used to set the control name in the attribute panel.
Any ideas why the degree symbol causes the control name to appear blank?
Thanks!