Bug: DefaultCDockable.removeAction(CAction action ) does not remove action from view

Example:


CDecorateableAction button1 = createButton1();
CDecorateableAction button2 = createButton2();

dockable.addAction(button1);
dockable.addAction(button2);

dockable.removeAction(button1);
dockable.removeAction(button2);

CDecorateableAction button3 = createButton3();
dockable.addAction(button3);```

There are still button1 and button2 on the the dockable view. This code works fine with the latest 1.0.7 preview. The bug present in version 1.0.8 preview 4a, and preview 5.

Uh, I should have seen that bug. I’ll upload a repaired version this evening.

A new Version, 1.0.8p5a, is online. There are also other bugxies included.

Sorry for the inconvenience.

Cool!!!

Thanks.

It works :slight_smile: