get root window BEFORE using it to restore randr config :/
authordiscomfitor <michael.blumenkrantz@gmail.com>
Thu, 17 Oct 2013 07:35:14 +0000 (08:35 +0100)
committerdiscomfitor <michael.blumenkrantz@gmail.com>
Thu, 17 Oct 2013 07:35:14 +0000 (08:35 +0100)
src/bin/e_randr.c

index 725046e15733fc8c46a44e0e40e4801896f56eaa..5cec7de6cdc92e166accffe2e05715bfe6faa8f7 100644 (file)
@@ -381,6 +381,9 @@ _e_randr_config_restore(void)
     * any randr event updates until we are done */
    ecore_x_grab();
 
+   /* get the root window */
+   root = ecore_x_window_root_first_get();
+
    /* get existing primary output */
    /* primary = ecore_x_randr_primary_output_get(root); */
 
@@ -391,9 +394,6 @@ _e_randr_config_restore(void)
    _e_randr_config_screen_size_calculate(&sw, &sh);
    printf("\tCalculated Screen Size: %d %d\n", sw, sh);
 
-   /* get the root window */
-   root = ecore_x_window_root_first_get();
-
    /* get a list of crtcs from X */
    if ((crtcs = ecore_x_randr_crtcs_get(root, &ncrtcs)))
      {