Code: Select all
+ Customize Toolbar Dialog: After selecting "Remove All", the "End of List" pseudo
item is automatically added to the end of the list. This allows you to more easily
add buttons in the correct order.Code: Select all
+ Customize Toolbar Dialog: After selecting "Remove All", the "End of List" pseudo
item is automatically added to the end of the list. This allows you to more easily
add buttons in the correct order.Code: Select all
v28.10.0410 - 2026-01-17 16:50
+ SC ctbicon enhanced: You can now omit the icon and change only the background color,
leaving the current icon in place. For example:
ctbicon("Apple.ico*#F6F6F6,r"); //set icon, with background color (rect shape)
ctbicon("*#F6A6F6,r"); //change background color, keep icon
v28.10.0411 - 2026-01-17 20:27
+ SC ctbicon enhanced: You can now omit the background color and change only the icon,
leaving the current background color in place. For example:
ctbicon("Apple.ico*#F6F6F6,r"); //set icon, with background color (rect shape)
ctbicon("Apple_Half.ico*"); //change icon, keep background colorCode: Select all
v28.10.0412 - 2026-01-18 15:32
+ SC ctbicon enhanced: Added ways to remove a property.
ctbicon(" *"); //remove icon, keep background color
ctbicon("* "); //remove background color, keep iconCode: Select all
v27.20.1108 - 2026-03-16 20:20 ++ v28.20.0503 - 2026-03-16 20:24
+ Added tweak to process the focused list item first whenever multiple selections are
processed, e.g. in Custom File Associations.
ListProcessFocusedItemFirst=1
If the tweak is set to 1 and the focused list item is the last of all selected items
then they are all processed in reverse order. Compare these 2 cases when
ListProcessFocusedItemFirst is set to 1:
selections processed order selections processed order
45 47 45 49
46 48 46 48
47-Focus 49 47 47
48 45 48 46
49 46 49-Focus 45