eclipse RCP开发 toobar位置问题

RCP开发,在工具栏添加一个按钮,plugin.xml配置内容如下

 <menuContribution
            locationURI="toolbar:org.eclipse.ui.trim.command2">
         <toolbar
               id="com.test.navigator.toolbar1"
               label="demo">
            <command
                  commandId="com.test.navigator.demo"
                  label="demo"
                  style="push"
                  tooltip="demo">
            </command>
         </toolbar>
      </menuContribution>

查阅eclipse官方资料, locationURI="toolbar:org.eclipse.ui.trim.command2"可以实现按钮位置早 top right显示,
图片说明

但是实际位置显示在如下图1的位置,我想显示在2的位置,也就是最右边,怎样才能显示在2的位置?

图片说明

https://blog.csdn.net/qq_36880602/article/details/79196489