Can not display button labels when developing extension for Notebookbar

Hey,

I’m not sure if this is the appropriate space for this question but it’s seems to be the best alternative. I’m currently adopting an old extension to the new Notebookbar style, but I ran into the problem that I can only ever display the button icons, never the text. According to this documentation I should be able to specify the style text + icon, but it doesn’ seem to do anything, specifying text still produces only the icon.

Minimal example:

<node oor:name=".OfficeNotebookBar" oor:op="replace">
     <node oor:name="m01" oor:op="replace">
        <prop oor:name="URL" oor:type="xs:string">
              <value>commandURL</value>
        </prop>
        <prop oor:name="ImageIdentifier" oor:type="xs:string">
            <value/>
        </prop>
        <prop oor:name="Target" oor:type="xs:string">
            <value>_self</value>
        </prop>
        <prop oor:name="Title" oor:type="xs:string">
            <value>Test</value>
        </prop>
        <prop oor:name="Style" oor:type="xs:string">
            <value>text</value>
        </prop>
    </node>
</node>

Edit: How can I add a properly formatted code block?

Hi! I am having the same problem as you. I am trying to create an Icon with Text beneath it using the instructions on this page:
https://wiki.documentfoundation.org/Development/NotebookBar/Extensions

However, I only get the icon to show, even using the Style “icon + text”. Did you manage to do it? If not, maybe we should report a bug about this.