Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d1a098ea authored by nicolasroard's avatar nicolasroard
Browse files

Fix crash "Gallery has stopped" popup occurs during print setup

bug:11159662
Change-Id: I181fe6f581290067b9a39d1382bf6ede08484c0a
parent db30124a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -296,7 +296,7 @@ public class FilterShowActivity extends FragmentActivity implements OnItemClickL
        MainPanel panel = new MainPanel();
        FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
        transaction.replace(R.id.main_panel_container, panel, MainPanel.FRAGMENT_TAG);
        transaction.commit();
        transaction.commitAllowingStateLoss();
    }

    public void loadEditorPanel(FilterRepresentation representation,
+1 −1
Original line number Diff line number Diff line
@@ -143,7 +143,7 @@ public class MainPanel extends Fragment {
            transaction.setCustomAnimations(R.anim.slide_in_left, R.anim.slide_out_left);
        }
        transaction.replace(R.id.category_panel_container, category, CategoryPanel.FRAGMENT_TAG);
        transaction.commit();
        transaction.commitAllowingStateLoss();
    }

    public void loadCategoryLookPanel(boolean force) {