Hi nameless, it's a bug or intentional omission in the MiniSidepane.js script file - in there it is inserting all the new rearranged buttons in the sidepane and it just does not have a history button in the chunk of stuff it inserts. Probably because it would need an additional row for it?
Right now inside your Draw / Edit section, the last row contains Cone, Text, Join, and Separate.
If you want to add an additional row containing the History button, you would need to insert:
code:
<tr><td><moi:commandbutton icon="icons/HistoryIcon.png" command="history"><moi:text textid="History" /></moi:commandbutton></td></tr>
On line number 11 of the script file.
But you need to insert that not at the very end of the string, it should go just before the </table> that's near the end.
The end of the string looks like this:
code:
</td></tr></table>';
The target spot where you insert it is marked with the x here:
code:
</td></tr>x</table>';
- Michael
|