randr test, print ConfigureNotify width and height

This commit is contained in:
Jay Sorg 2013-02-17 20:38:18 -08:00
parent 3365cae66b
commit 4607de10a6
1 changed files with 2 additions and 1 deletions

View File

@ -119,7 +119,8 @@ main(int argc, char **argv)
case ConfigureNotify:
if (ev.xconfigure.window == root_window)
{
printf("ConfigureNotify for root window\n");
printf("ConfigureNotify for root window width %d height %d\n",
ev.xconfigure.width, ev.xconfigure.height);
}
break;
default: