CalendarGadget - 'Today' text at bottom of gadget has inconsistent mouseover coloring

Post bugreports for the Windows version here
Axeman
User
User
Posts: 99
Joined: Mon Nov 03, 2003 5:34 am

CalendarGadget - 'Today' text at bottom of gadget has inconsistent mouseover coloring

Post by Axeman »

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:-

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