FULLSCREEN, maked windwos IDE not update text

Report any Hollywood bugs here
Post Reply
plouf
Posts: 584
Joined: Sun Feb 04, 2018 11:51 pm
Location: Athens,Greece

FULLSCREEN, maked windwos IDE not update text

Post by plouf »

usign the following example, if you open a full text , the debug text is NOT dispalyed,
however using mouse to select text (mark it blue) you see that text is actually there but is not refreshed !

Code: Select all

CreateDisplay(2, {Width = 300, Height = 100, X = 10, Y = 10, Title = "", Borderless = True, Fixed = True, Mode = "Ask", Active = True, Hidden = True})
OpenDisplay(2)

Local DisplayMode = GetAttribute(#DISPLAY, 2, #ATTRMODE)

If DisplayMode = #DISPMODE_WINDOWED
	DebugPrint("NOT LOST TEXT")
ElseIf DisplayMode = #DISPMODE_FULLSCREEN
	DebugPrint("LOST TEXT")
EndIf

WaitLeftMouse()
Christos
User avatar
airsoftsoftwair
Posts: 5626
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: FULLSCREEN, maked windwos IDE not update text

Post by airsoftsoftwair »

True, will be fixed.
Post Reply