predi commented on issue #8771:
URL: https://github.com/apache/netbeans/issues/8771#issuecomment-3235838424
Revision history of the related `.form` XML file (in our repository)
suggests that this started being an issue with NB 26. Prior to the most recent
commit, the XML element for the toolbar started like this:
```xml <Container class="javax.swing.JToolBar" name="toolbar">
<Properties>
<Property name="floatable" type="boolean" value="false"/>
<Property name="rollover" type="boolean" value="true"/>
</Properties>
```
And the most recent commit only has this:
```xml <Container class="javax.swing.JToolBar" name="toolbar">
<Properties>
<Property name="rollover" type="boolean" value="true"/>
</Properties>
```
NB 26 was being used for that last commit.
However, I cannot get any version to add the Property element that
disappeared. I've tried as far as NB version 15. I have no idea how that is
possible, because versions between 15 and 25 were being used to edit this same
form and that XML element was there all the time.
There is also another curiosity I've found. I've only noticed the floating
toolbar handle in the most recent debug build of our application within my
Netbeans 26 instance. Our CI built the last build without this handle - despite
that XML element being removed in the repository, the generated code of the
associated class still has this:
```java
toolbar.setFloatable(false);
toolbar.setRollover(true);
```
The code in my working directory, no longer has the first line for this
toolbar.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists