played around with the code in gmw-toolkit.lua and commented out these lines and the error doesn't come up and seemed to be functional although I noticed some of the side entries had different shade of blue then with the fixed code.
--[[DesktopManager.setSidebarDockCategoryIconColor("00 0000");
DesktopManager.setSidebarDockCategoryTextColor("00 0000");
DesktopManager.setSidebarDockIconColor("000000");
DesktopManager.setSidebarDockTextColor("000000");--]]
Then I came across this thread that suggests DesktopManager is depreciated and should be replaced with ColorManager
https://www.fantasygrounds.com/forum...0-(2023-06-13)
changed the above code to:
ColorManager.setSidebarCategoryIconColor("000000") ;
ColorManager.setSidebarCategoryTextColor("000000") ;
ColorManager.setSidebarRecordIconColor("000000");
ColorManager.setSidebarRecordTextColor("000000");
no errors at the moment and colors seem all uniform but I don't know if it would have broken anything else, would have to play around with it more. I don't presume to know a lot about Lua at all and could only guess what that code does exactly.

