From 11a958b643f3a8de723795dbdec8c48d63bd4f39 Mon Sep 17 00:00:00 2001 From: Shinovon Date: Thu, 7 May 2026 20:26:36 +0500 Subject: [PATCH] Resize handler --- src/skel/symbian/symbian.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/skel/symbian/symbian.cpp b/src/skel/symbian/symbian.cpp index 7631727..61716d3 100644 --- a/src/skel/symbian/symbian.cpp +++ b/src/skel/symbian/symbian.cpp @@ -786,6 +786,14 @@ public: break; } } + + void HandleResourceChange(TInt aType) { + switch (aType) { + case KEikDynamicLayoutVariantSwitch: + SetExtentToWholeScreen(); + break; + } + } }; class RE3AppUi : public CAknAppUi {