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
1 changed files with 1 additions and 1 deletions

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 )
{