Fix: typo inverting size of working area height and width

BUG: 227641400
Change-Id: I610896b6d826fead189636cb60abfd31e5d2e4d1
Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/croscomp/+/3584853
Reviewed-by: Lucas Berthou <berlu@chromium.org>
Commit-Queue: Lucas Berthou <berlu@chromium.org>
Tested-by: Lucas Berthou <berlu@chromium.org>
Auto-Submit: Lucas Berthou <berlu@chromium.org>
Reviewed-by: John Plate <jplate@google.com>
diff --git a/src/shell.rs b/src/shell.rs
index c3ee857..af97115 100644
--- a/src/shell.rs
+++ b/src/shell.rs
@@ -786,8 +786,8 @@
         let work_area = get_work_area(output);
 
         ffi::weston_size {
-            width: work_area.height,
-            height: work_area.width,
+            width: work_area.width,
+            height: work_area.height,
         }
     }