CalendarGadget - 'Today' text at bottom of gadget has inconsistent mouseover coloring
Posted: Thu Oct 16, 2025 1:28 am
When I mouseover the 'Today' text at the bottom of a CalendarGadget, the text is only partially changed to the light-blue mouseover color. This coloring issue seems to be pixel-based, rather than character-based, as with the test code below the zero character is two-thirds blue text with the remainder the default color.
The calendar used with the DateGadget has the same issue.
SCREENSHOT: https://imgur.com/a/159UY3H
VERSION: PureBasic 6.21 (Windows - x64) (Windows 10)
Example code:-
The calendar used with the DateGadget has the same issue.
SCREENSHOT: https://imgur.com/a/159UY3H
VERSION: PureBasic 6.21 (Windows - x64) (Windows 10)
Example code:-
Code: Select all
If OpenWindow( 0, 0, 0, 245, 180, "CalendarGadget", #PB_Window_SystemMenu | #PB_Window_ScreenCentered )
CalendarGadget( 0, 10, 10, 225, 160, Date(), #PB_Calendar_Borderless )
Repeat : Until WaitWindowEvent() = #PB_Event_CloseWindow
EndIf