On configuration change setup screen decorations

Test: developer options > set emulated cutout
Change-Id: I6418ad8226955264d6197491d772954491aba9ac
Fixes: 80230317
diff --git a/packages/SystemUI/src/com/android/systemui/ScreenDecorations.java b/packages/SystemUI/src/com/android/systemui/ScreenDecorations.java
index 2746a71..e347a14 100644
--- a/packages/SystemUI/src/com/android/systemui/ScreenDecorations.java
+++ b/packages/SystemUI/src/com/android/systemui/ScreenDecorations.java
@@ -196,6 +196,9 @@
     @Override
     protected void onConfigurationChanged(Configuration newConfig) {
         updateOrientation();
+        if (shouldDrawCutout() && mOverlay == null) {
+            setupDecorations();
+        }
     }
 
     protected void updateOrientation() {
@@ -207,10 +210,6 @@
                 updateLayoutParams();
                 updateViews();
             }
-
-            if (shouldDrawCutout() && mOverlay == null) {
-                setupDecorations();
-            }
         }
     }