I think there is an error in the toolbarIcons.xml file, possibly because more icons have been added between others with Notepad++ updates. I noticed the Print Now icon was actually showing the Save Recorded Macro icon. So I counted the number of icons in the toolbar - 26, and opened toolbarIcons.xml and sound only 24 entries for icons. I had to add a few, and move the print entry down from 24 to 26:
<Icon name = "print" id = "26">
<normal>print_normal.ico</normal>
<hover>print_hover.ico</hover>
</Icon>
I also found errors in the Crystal++ Icons, the toolbarIcons.xml file seemed to be missing entries for vertical & horizantal sync, which shunted everything down 2, none of the icons after were in the right place. As soon as I added the code below, and re-sequenced the entry numbers, it worked correctly.
<Icon name = "vertical sync" id = "15">
<normal></normal>
<hover></hover>
</Icon>
<Icon name = "horizontal sync" id = "16">
<normal></normal>
<hover></hover>
</Icon>
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The Printer tooltip on the toolbar either shows nothing or the last tooltip from the last toolbar icon hover.
In other words, if I hover over the Save icon and then hover over the Printer icon, the tooltip for the Printer icon shows "Save".
I think there is an error in the toolbarIcons.xml file, possibly because more icons have been added between others with Notepad++ updates. I noticed the Print Now icon was actually showing the Save Recorded Macro icon. So I counted the number of icons in the toolbar - 26, and opened toolbarIcons.xml and sound only 24 entries for icons. I had to add a few, and move the print entry down from 24 to 26:
<Icon name = "print" id = "26">
<normal>print_normal.ico</normal>
<hover>print_hover.ico</hover>
</Icon>
I also found errors in the Crystal++ Icons, the toolbarIcons.xml file seemed to be missing entries for vertical & horizantal sync, which shunted everything down 2, none of the icons after were in the right place. As soon as I added the code below, and re-sequenced the entry numbers, it worked correctly.
<Icon name = "vertical sync" id = "15">
<normal></normal>
<hover></hover>
</Icon>
<Icon name = "horizontal sync" id = "16">
<normal></normal>
<hover></hover>
</Icon>