Fixed BB code button manager - Group options FA icon

Thank you for reporting this issue, it has now been resolved. We are aiming to include any changes that have been made in a future XF release (2.2.0 Beta 6).

Change log:
Remove the unused "Font Awesome icon" option for button groups in the BB code button manager.
There may be a delay before changes are rolled out to the XenForo Community.
 
We weren't actually using the value from that option and the way we wanted to use it is not available so we have now removed it.

To customise the icon the best way to do it is via CSS. You can change the "more" icon for all groups with this CSS:

CSS:
.fr-toolbar .fr-command.fr-btn[data-cmd^="more"] i:before {
    content: "\f00d";
}

Or you can change the icon for a specific group with this CSS:

CSS:
.fr-toolbar .fr-command.fr-btn[data-cmd="moreText"] i:before {
    content: "\f00d";
}
 
Top Bottom