diff --git a/motor/src/org/lineageos/popupcamera/PopupCameraSettingsActivity.java b/motor/src/org/lineageos/popupcamera/PopupCameraSettingsActivity.java index 5b1072c..4e4f185 100644 --- a/motor/src/org/lineageos/popupcamera/PopupCameraSettingsActivity.java +++ b/motor/src/org/lineageos/popupcamera/PopupCameraSettingsActivity.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2020 The LineageOS Project + * Copyright (C) 2020-2024 The LineageOS Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -19,7 +19,6 @@ package org.lineageos.popupcamera; import android.os.Bundle; import com.android.settingslib.collapsingtoolbar.CollapsingToolbarBaseActivity; -import com.android.settingslib.widget.R; public class PopupCameraSettingsActivity extends CollapsingToolbarBaseActivity { private static final String TAG_POPUPCAMERA = "popupcamera"; @@ -30,7 +29,8 @@ public class PopupCameraSettingsActivity extends CollapsingToolbarBaseActivity { getFragmentManager() .beginTransaction() - .replace(R.id.content_frame, new PopupCameraSettingsFragment(), TAG_POPUPCAMERA) + .replace(com.android.settingslib.collapsingtoolbar.R.id.content_frame, + new PopupCameraSettingsFragment(), TAG_POPUPCAMERA) .commit(); } }