From e81ba7192d021101d30e686b752dae97f1f84cbc Mon Sep 17 00:00:00 2001 From: "Mr. 17" Date: Tue, 19 Dec 2023 18:18:46 +0530 Subject: [PATCH] Fix #5266: Call setUpDrawer( ) directly if binding already initialized (#5276) ## Explanation Fixes #5266 This is happening because `setUpDrawer()` is not called when we go back to a particular fragment/activity. `setUpDrawer()` is now called from `handleCreateView()` which is called only when the fragment/activity is created. This is fixed by calling `setUpDrawer()` directly when calling via `onRestart()`. |Before|After| |--|--| |