Little repaint bug

Post Reply
User avatar
Enrico Maria Giordano
Posts: 7355
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Contact:

Little repaint bug

Post by Enrico Maria Giordano »

This is the sample. Try to set the taskbar in autohide mode then run the sample, move the mouse cursor toward the bottom of the screen to cause the taskbar to show then let it hide again and you will see that the little bottom-right square between the two scrollbars doesn't repaint itself (it keeps a color stripe of the taskbar).

Code: Select all

#include "Fivewin.ch"


FUNCTION MAIN()

    LOCAL oWnd, oBrw

    USE TEST

    DEFINE WINDOW oWnd

    SET MESSAGE OF oWnd

    @ 0, 0 LISTBOX oBrw FIELDS

    oWnd:oClient = oBrw

    ACTIVATE WINDOW oWnd;
             ON INIT oWnd:Move( 0, 0, GETSYSMETRICS( 0 ) / 2, GETSYSMETRICS( 1 ) )

    CLOSE

    RETURN NIL
EMG
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Enrico,

Yes, we are aware of it though we have not found a way to fix it yet
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply