1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

Fix deadlock when resizing display when a graphical process is running.

This commit is contained in:
Jonas 'Sortie' Termansen 2018-08-08 23:46:19 +02:00
parent 969a3e599b
commit b767063c9a

View file

@ -355,7 +355,7 @@ void LFBTextBuffer::IssueCommand(TextBufferCmd* cmd, bool already_locked)
invalidated = false;
TextBufferCmd newcmd;
newcmd.type = TEXTBUFCMD_REDRAW;
IssueCommand(&newcmd);
IssueCommand(&newcmd, already_locked);
}
if ( !queue_thread || emergency_state )
{