From 1f51c67cf23e8de41b2849a70082d852e8ef763c Mon Sep 17 00:00:00 2001 From: Shaurya Pratap Singh <43893479+PrimusSPS@users.noreply.github.com> Date: Sat, 17 Dec 2022 17:39:53 +0530 Subject: [PATCH] Current code throws an exception ERROR Current code throw an exception error when cursor is moved in the "placeholder" area. It can be fixed by updating the if condition on line 12: FROM: LINE 12: if( event == EVENT_MOUSEMOVE) TO: LINE 12: if( event == EVENT_MOUSEMOVE and (x(y, x)); @@ -102,4 +102,4 @@ int main( int argc, const char** argv ) } } return 0; -} \ No newline at end of file +}