2013-06-11 14:45:48 -04:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2013 The Android Open Source Project
|
|
|
|
|
*
|
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
|
* limitations under the License.
|
2021-04-24 09:48:35 +02:00
|
|
|
*
|
|
|
|
|
* Modifications copyright 2021, Lawnchair
|
2013-06-11 14:45:48 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
package com.android.launcher3;
|
|
|
|
|
|
2021-05-03 19:59:51 -07:00
|
|
|
import static com.android.launcher3.Utilities.getDevicePrefs;
|
|
|
|
|
import static com.android.launcher3.config.FeatureFlags.ENABLE_THEMED_ICONS;
|
2019-09-20 12:51:37 -07:00
|
|
|
import static com.android.launcher3.util.Executors.MODEL_EXECUTOR;
|
2021-03-25 10:41:54 -04:00
|
|
|
import static com.android.launcher3.util.SettingsCache.NOTIFICATION_BADGING_URI;
|
2018-06-29 14:40:18 -07:00
|
|
|
|
2017-07-27 23:23:58 -07:00
|
|
|
import android.content.ComponentName;
|
2014-07-22 13:48:29 -07:00
|
|
|
import android.content.Context;
|
|
|
|
|
import android.content.Intent;
|
2021-05-17 13:23:08 -07:00
|
|
|
import android.content.SharedPreferences;
|
|
|
|
|
import android.content.SharedPreferences.OnSharedPreferenceChangeListener;
|
2019-10-02 16:13:34 -07:00
|
|
|
import android.content.pm.LauncherApps;
|
2021-05-03 19:59:51 -07:00
|
|
|
import android.os.UserHandle;
|
2013-06-14 20:17:30 -04:00
|
|
|
import android.util.Log;
|
2015-01-08 16:59:04 -08:00
|
|
|
|
Render user's actual workspace in ThemePicker preview (Part 3)
go/grid-migration-preview
With this change, we can see actual grid migration in wallpaper preview.
The approach here: we use a tmp table (favorites_preview) here specifically for this preview (to write off the migration results), and load from this tmp table workspace items if migration is necessary and successful. Otherwise, we load from the current workspace.
UPDATED: this change should be completely compatible with the new multi-db grid migration algorithm. Here is why
1. In LauncherPreviewRender#renderScreenShot, I added a check to decide which grid migration preview method we should call. Once v2 preview method is implemented, it should be integrated with other parts of this change perfectly (the reason will be mentioned below).
2. While we have multiple DBs, mOpenHelper in LauncherProvider always points to the current db we are using. Queries using CONTENT_URI is routed to whatever DB mOpenHelper points to, so it works perfectly to directly operate on CONTENT_URI even when we use multi-db underneath the hood.
3. With 1 and 2 mentioned, I believe in order for this preview change to support multi-db, we only need to implement the V2 grid migration algorithm. Because most of what we are doing in this change is wrapped in GridSizeMigrationTask, it's perfectly safeguarded.
Bug: 144052839
Change-Id: Ie6d6048d77326f96546c8a180a7cd8f15b47e4c4
2020-01-12 01:07:59 -08:00
|
|
|
import androidx.annotation.Nullable;
|
|
|
|
|
|
2017-12-18 13:49:44 -08:00
|
|
|
import com.android.launcher3.config.FeatureFlags;
|
2021-05-03 19:59:51 -07:00
|
|
|
import com.android.launcher3.graphics.IconShape;
|
2018-09-21 14:41:05 -07:00
|
|
|
import com.android.launcher3.icons.IconCache;
|
2019-10-24 15:59:49 -07:00
|
|
|
import com.android.launcher3.icons.IconProvider;
|
2018-10-12 11:42:33 -07:00
|
|
|
import com.android.launcher3.icons.LauncherIcons;
|
2017-07-27 23:23:58 -07:00
|
|
|
import com.android.launcher3.notification.NotificationListener;
|
2019-12-09 14:55:56 -08:00
|
|
|
import com.android.launcher3.pm.InstallSessionHelper;
|
2019-09-20 12:51:37 -07:00
|
|
|
import com.android.launcher3.pm.InstallSessionTracker;
|
2019-12-10 12:19:13 -08:00
|
|
|
import com.android.launcher3.pm.UserCache;
|
2018-06-29 14:40:18 -07:00
|
|
|
import com.android.launcher3.util.MainThreadInitializedObject;
|
2017-02-01 12:52:54 -08:00
|
|
|
import com.android.launcher3.util.Preconditions;
|
2021-05-03 19:59:51 -07:00
|
|
|
import com.android.launcher3.util.RunnableList;
|
2019-10-24 15:59:49 -07:00
|
|
|
import com.android.launcher3.util.SafeCloseable;
|
2021-03-25 10:41:54 -04:00
|
|
|
import com.android.launcher3.util.SettingsCache;
|
2019-10-02 16:13:34 -07:00
|
|
|
import com.android.launcher3.util.SimpleBroadcastReceiver;
|
2021-05-17 13:23:08 -07:00
|
|
|
import com.android.launcher3.util.Themes;
|
2019-08-26 14:36:02 -07:00
|
|
|
import com.android.launcher3.widget.custom.CustomWidgetManager;
|
2015-01-08 16:59:04 -08:00
|
|
|
|
2021-03-17 21:31:27 +05:30
|
|
|
import app.lawnchair.LawnchairAppKt;
|
2021-10-09 22:57:15 +07:00
|
|
|
import app.lawnchair.icons.LawnchairIconProvider;
|
2021-03-17 21:31:27 +05:30
|
|
|
|
2021-08-27 21:22:17 +00:00
|
|
|
public class LauncherAppState implements SafeCloseable {
|
2014-02-14 16:59:24 -05:00
|
|
|
|
2017-12-18 13:49:44 -08:00
|
|
|
public static final String ACTION_FORCE_ROLOAD = "force-reload-launcher";
|
2021-05-03 19:59:51 -07:00
|
|
|
private static final String KEY_ICON_STATE = "pref_icon_shape_path";
|
2017-12-18 13:49:44 -08:00
|
|
|
|
2017-02-01 12:52:54 -08:00
|
|
|
// We do not need any synchronization for this variable as its only written on UI thread.
|
2019-09-25 09:08:16 -07:00
|
|
|
public static final MainThreadInitializedObject<LauncherAppState> INSTANCE =
|
2021-03-17 21:31:27 +05:30
|
|
|
new MainThreadInitializedObject<LauncherAppState>(LauncherAppState::new) {
|
|
|
|
|
@Override
|
|
|
|
|
protected void onPostInit(Context context) {
|
|
|
|
|
super.onPostInit(context);
|
|
|
|
|
LawnchairAppKt.getLawnchairApp(context).onLauncherAppStateCreated();
|
|
|
|
|
}
|
|
|
|
|
};
|
2017-02-01 12:52:54 -08:00
|
|
|
|
2021-10-07 09:42:24 +07:00
|
|
|
private Launcher mLauncher;
|
2017-02-01 12:52:54 -08:00
|
|
|
private final Context mContext;
|
|
|
|
|
private final LauncherModel mModel;
|
2021-05-03 19:59:51 -07:00
|
|
|
private final IconProvider mIconProvider;
|
2014-11-10 18:05:31 -08:00
|
|
|
private final IconCache mIconCache;
|
2017-02-01 12:52:54 -08:00
|
|
|
private final InvariantDeviceProfile mInvariantDeviceProfile;
|
2021-05-03 19:59:51 -07:00
|
|
|
private final RunnableList mOnTerminateCallback = new RunnableList();
|
2019-09-20 12:51:37 -07:00
|
|
|
|
2017-02-01 12:52:54 -08:00
|
|
|
public static LauncherAppState getInstance(final Context context) {
|
2018-06-29 14:40:18 -07:00
|
|
|
return INSTANCE.get(context);
|
2013-06-11 14:45:48 -04:00
|
|
|
}
|
|
|
|
|
|
2013-10-04 10:42:14 -04:00
|
|
|
public static LauncherAppState getInstanceNoCreate() {
|
2018-06-29 14:40:18 -07:00
|
|
|
return INSTANCE.getNoCreate();
|
2013-10-04 10:42:14 -04:00
|
|
|
}
|
|
|
|
|
|
2013-06-11 14:45:48 -04:00
|
|
|
public Context getContext() {
|
2017-02-01 12:52:54 -08:00
|
|
|
return mContext;
|
2013-06-11 14:45:48 -04:00
|
|
|
}
|
|
|
|
|
|
Render user's actual workspace in ThemePicker preview (Part 3)
go/grid-migration-preview
With this change, we can see actual grid migration in wallpaper preview.
The approach here: we use a tmp table (favorites_preview) here specifically for this preview (to write off the migration results), and load from this tmp table workspace items if migration is necessary and successful. Otherwise, we load from the current workspace.
UPDATED: this change should be completely compatible with the new multi-db grid migration algorithm. Here is why
1. In LauncherPreviewRender#renderScreenShot, I added a check to decide which grid migration preview method we should call. Once v2 preview method is implemented, it should be integrated with other parts of this change perfectly (the reason will be mentioned below).
2. While we have multiple DBs, mOpenHelper in LauncherProvider always points to the current db we are using. Queries using CONTENT_URI is routed to whatever DB mOpenHelper points to, so it works perfectly to directly operate on CONTENT_URI even when we use multi-db underneath the hood.
3. With 1 and 2 mentioned, I believe in order for this preview change to support multi-db, we only need to implement the V2 grid migration algorithm. Because most of what we are doing in this change is wrapped in GridSizeMigrationTask, it's perfectly safeguarded.
Bug: 144052839
Change-Id: Ie6d6048d77326f96546c8a180a7cd8f15b47e4c4
2020-01-12 01:07:59 -08:00
|
|
|
public LauncherAppState(Context context) {
|
|
|
|
|
this(context, LauncherFiles.APP_ICONS_DB);
|
2021-05-19 19:42:14 -07:00
|
|
|
Log.v(Launcher.TAG, "LauncherAppState initiated");
|
|
|
|
|
Preconditions.assertUIThread();
|
2015-03-19 13:18:44 -07:00
|
|
|
|
2021-08-24 16:23:29 -07:00
|
|
|
mInvariantDeviceProfile.addOnChangeListener(modelPropertiesChanged -> {
|
|
|
|
|
if (modelPropertiesChanged) {
|
|
|
|
|
refreshAndReloadLauncher();
|
|
|
|
|
}
|
|
|
|
|
});
|
2015-05-01 13:02:20 -07:00
|
|
|
|
2019-10-02 16:13:34 -07:00
|
|
|
mContext.getSystemService(LauncherApps.class).registerCallback(mModel);
|
2021-05-03 19:59:51 -07:00
|
|
|
|
|
|
|
|
SimpleBroadcastReceiver modelChangeReceiver =
|
|
|
|
|
new SimpleBroadcastReceiver(mModel::onBroadcastIntent);
|
|
|
|
|
modelChangeReceiver.register(mContext, Intent.ACTION_LOCALE_CHANGED,
|
2019-10-02 16:13:34 -07:00
|
|
|
Intent.ACTION_MANAGED_PROFILE_AVAILABLE,
|
|
|
|
|
Intent.ACTION_MANAGED_PROFILE_UNAVAILABLE,
|
|
|
|
|
Intent.ACTION_MANAGED_PROFILE_UNLOCKED);
|
2020-02-14 14:15:13 -08:00
|
|
|
if (FeatureFlags.IS_STUDIO_BUILD) {
|
2021-05-03 19:59:51 -07:00
|
|
|
modelChangeReceiver.register(mContext, ACTION_FORCE_ROLOAD);
|
2017-12-18 13:49:44 -08:00
|
|
|
}
|
2021-05-03 19:59:51 -07:00
|
|
|
mOnTerminateCallback.add(() -> mContext.unregisterReceiver(modelChangeReceiver));
|
2019-10-24 15:59:49 -07:00
|
|
|
|
2019-09-20 12:00:07 -07:00
|
|
|
CustomWidgetManager.INSTANCE.get(mContext)
|
|
|
|
|
.setWidgetRefreshCallback(mModel::refreshAndBindWidgetsAndShortcuts);
|
2017-12-18 13:49:44 -08:00
|
|
|
|
2021-05-03 19:59:51 -07:00
|
|
|
SafeCloseable userChangeListener = UserCache.INSTANCE.get(mContext)
|
2019-12-10 12:19:13 -08:00
|
|
|
.addUserChangeListener(mModel::forceReload);
|
2021-05-03 19:59:51 -07:00
|
|
|
mOnTerminateCallback.add(userChangeListener::close);
|
2019-12-10 12:19:13 -08:00
|
|
|
|
2021-05-03 19:59:51 -07:00
|
|
|
IconObserver observer = new IconObserver();
|
|
|
|
|
SafeCloseable iconChangeTracker = mIconProvider.registerIconChangeListener(
|
|
|
|
|
observer, MODEL_EXECUTOR.getHandler());
|
|
|
|
|
mOnTerminateCallback.add(iconChangeTracker::close);
|
|
|
|
|
MODEL_EXECUTOR.execute(observer::verifyIconChanged);
|
2021-05-17 13:23:08 -07:00
|
|
|
if (ENABLE_THEMED_ICONS.get()) {
|
|
|
|
|
SharedPreferences prefs = Utilities.getPrefs(mContext);
|
|
|
|
|
prefs.registerOnSharedPreferenceChangeListener(observer);
|
|
|
|
|
mOnTerminateCallback.add(
|
|
|
|
|
() -> prefs.unregisterOnSharedPreferenceChangeListener(observer));
|
|
|
|
|
}
|
2019-12-10 12:19:13 -08:00
|
|
|
|
2021-05-03 19:59:51 -07:00
|
|
|
InstallSessionTracker installSessionTracker =
|
|
|
|
|
InstallSessionHelper.INSTANCE.get(context).registerInstallTracker(mModel);
|
|
|
|
|
mOnTerminateCallback.add(installSessionTracker::unregister);
|
2019-09-20 12:51:37 -07:00
|
|
|
|
2020-07-29 16:54:20 -07:00
|
|
|
// Register an observer to rebind the notification listener when dots are re-enabled.
|
2021-05-03 19:59:51 -07:00
|
|
|
SettingsCache settingsCache = SettingsCache.INSTANCE.get(mContext);
|
|
|
|
|
SettingsCache.OnChangeListener notificationLister = this::onNotificationSettingsChanged;
|
|
|
|
|
settingsCache.register(NOTIFICATION_BADGING_URI, notificationLister);
|
|
|
|
|
onNotificationSettingsChanged(settingsCache.getValue(NOTIFICATION_BADGING_URI));
|
|
|
|
|
mOnTerminateCallback.add(() ->
|
|
|
|
|
settingsCache.unregister(NOTIFICATION_BADGING_URI, notificationLister));
|
2018-10-17 10:25:14 -07:00
|
|
|
}
|
|
|
|
|
|
Render user's actual workspace in ThemePicker preview (Part 3)
go/grid-migration-preview
With this change, we can see actual grid migration in wallpaper preview.
The approach here: we use a tmp table (favorites_preview) here specifically for this preview (to write off the migration results), and load from this tmp table workspace items if migration is necessary and successful. Otherwise, we load from the current workspace.
UPDATED: this change should be completely compatible with the new multi-db grid migration algorithm. Here is why
1. In LauncherPreviewRender#renderScreenShot, I added a check to decide which grid migration preview method we should call. Once v2 preview method is implemented, it should be integrated with other parts of this change perfectly (the reason will be mentioned below).
2. While we have multiple DBs, mOpenHelper in LauncherProvider always points to the current db we are using. Queries using CONTENT_URI is routed to whatever DB mOpenHelper points to, so it works perfectly to directly operate on CONTENT_URI even when we use multi-db underneath the hood.
3. With 1 and 2 mentioned, I believe in order for this preview change to support multi-db, we only need to implement the V2 grid migration algorithm. Because most of what we are doing in this change is wrapped in GridSizeMigrationTask, it's perfectly safeguarded.
Bug: 144052839
Change-Id: Ie6d6048d77326f96546c8a180a7cd8f15b47e4c4
2020-01-12 01:07:59 -08:00
|
|
|
public LauncherAppState(Context context, @Nullable String iconCacheFileName) {
|
|
|
|
|
mContext = context;
|
|
|
|
|
|
|
|
|
|
mInvariantDeviceProfile = InvariantDeviceProfile.INSTANCE.get(context);
|
2021-10-26 18:07:38 +07:00
|
|
|
mIconProvider = new LawnchairIconProvider(context, Themes.isThemedIconEnabled(context));
|
2021-05-03 19:59:51 -07:00
|
|
|
mIconCache = new IconCache(mContext, mInvariantDeviceProfile,
|
|
|
|
|
iconCacheFileName, mIconProvider);
|
2021-08-26 10:37:17 -07:00
|
|
|
mModel = new LauncherModel(context, this, mIconCache, new AppFilter(mContext),
|
|
|
|
|
iconCacheFileName != null);
|
2021-05-19 19:42:14 -07:00
|
|
|
mOnTerminateCallback.add(mIconCache::close);
|
Render user's actual workspace in ThemePicker preview (Part 3)
go/grid-migration-preview
With this change, we can see actual grid migration in wallpaper preview.
The approach here: we use a tmp table (favorites_preview) here specifically for this preview (to write off the migration results), and load from this tmp table workspace items if migration is necessary and successful. Otherwise, we load from the current workspace.
UPDATED: this change should be completely compatible with the new multi-db grid migration algorithm. Here is why
1. In LauncherPreviewRender#renderScreenShot, I added a check to decide which grid migration preview method we should call. Once v2 preview method is implemented, it should be integrated with other parts of this change perfectly (the reason will be mentioned below).
2. While we have multiple DBs, mOpenHelper in LauncherProvider always points to the current db we are using. Queries using CONTENT_URI is routed to whatever DB mOpenHelper points to, so it works perfectly to directly operate on CONTENT_URI even when we use multi-db underneath the hood.
3. With 1 and 2 mentioned, I believe in order for this preview change to support multi-db, we only need to implement the V2 grid migration algorithm. Because most of what we are doing in this change is wrapped in GridSizeMigrationTask, it's perfectly safeguarded.
Bug: 144052839
Change-Id: Ie6d6048d77326f96546c8a180a7cd8f15b47e4c4
2020-01-12 01:07:59 -08:00
|
|
|
}
|
|
|
|
|
|
2021-05-03 19:59:51 -07:00
|
|
|
private void onNotificationSettingsChanged(boolean areNotificationDotsEnabled) {
|
2018-12-03 18:11:39 -08:00
|
|
|
if (areNotificationDotsEnabled) {
|
2018-10-17 10:25:14 -07:00
|
|
|
NotificationListener.requestRebind(new ComponentName(
|
|
|
|
|
mContext, NotificationListener.class));
|
2017-07-27 23:23:58 -07:00
|
|
|
}
|
2013-06-11 14:45:48 -04:00
|
|
|
}
|
2014-05-08 18:52:50 +01:00
|
|
|
|
2022-05-10 22:13:00 +07:00
|
|
|
public void reloadIcons() {
|
2022-05-09 22:26:13 +07:00
|
|
|
refreshAndReloadLauncher();
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-03 19:59:51 -07:00
|
|
|
private void refreshAndReloadLauncher() {
|
|
|
|
|
LauncherIcons.clearPool();
|
|
|
|
|
mIconCache.updateIconParams(
|
|
|
|
|
mInvariantDeviceProfile.fillResIconDpi, mInvariantDeviceProfile.iconBitmapSize);
|
2018-10-12 11:42:33 -07:00
|
|
|
mModel.forceReload();
|
|
|
|
|
}
|
|
|
|
|
|
2013-06-11 14:45:48 -04:00
|
|
|
/**
|
|
|
|
|
* Call from Application.onTerminate(), which is not guaranteed to ever be called.
|
|
|
|
|
*/
|
2021-08-27 21:22:17 +00:00
|
|
|
@Override
|
|
|
|
|
public void close() {
|
2020-07-27 17:50:33 -07:00
|
|
|
mModel.destroy();
|
2019-10-02 16:13:34 -07:00
|
|
|
mContext.getSystemService(LauncherApps.class).unregisterCallback(mModel);
|
2019-09-20 12:00:07 -07:00
|
|
|
CustomWidgetManager.INSTANCE.get(mContext).setWidgetRefreshCallback(null);
|
2021-05-03 19:59:51 -07:00
|
|
|
mOnTerminateCallback.executeAllAndDestroy();
|
|
|
|
|
}
|
2019-09-20 12:00:07 -07:00
|
|
|
|
2021-05-03 19:59:51 -07:00
|
|
|
public IconProvider getIconProvider() {
|
|
|
|
|
return mIconProvider;
|
2013-06-11 14:45:48 -04:00
|
|
|
}
|
|
|
|
|
|
2021-03-17 21:31:27 +05:30
|
|
|
public void setLauncher(Launcher launcher) {
|
|
|
|
|
mLauncher = launcher;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Launcher getLauncher() {
|
|
|
|
|
return mLauncher;
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-29 17:20:55 -07:00
|
|
|
public IconCache getIconCache() {
|
2013-06-11 14:45:48 -04:00
|
|
|
return mIconCache;
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-08 18:13:46 -07:00
|
|
|
public LauncherModel getModel() {
|
2013-06-11 14:45:48 -04:00
|
|
|
return mModel;
|
|
|
|
|
}
|
|
|
|
|
|
2015-05-06 11:42:25 -07:00
|
|
|
public InvariantDeviceProfile getInvariantDeviceProfile() {
|
|
|
|
|
return mInvariantDeviceProfile;
|
|
|
|
|
}
|
2017-01-11 10:48:34 -08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Shorthand for {@link #getInvariantDeviceProfile()}
|
|
|
|
|
*/
|
|
|
|
|
public static InvariantDeviceProfile getIDP(Context context) {
|
2018-06-29 14:40:18 -07:00
|
|
|
return InvariantDeviceProfile.INSTANCE.get(context);
|
2017-01-11 10:48:34 -08:00
|
|
|
}
|
2021-05-03 19:59:51 -07:00
|
|
|
|
2021-05-17 13:23:08 -07:00
|
|
|
private class IconObserver
|
|
|
|
|
implements IconProvider.IconChangeListener, OnSharedPreferenceChangeListener {
|
2021-05-03 19:59:51 -07:00
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void onAppIconChanged(String packageName, UserHandle user) {
|
|
|
|
|
mModel.onAppIconChanged(packageName, user);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void onSystemIconStateChanged(String iconState) {
|
|
|
|
|
IconShape.init(mContext);
|
|
|
|
|
refreshAndReloadLauncher();
|
|
|
|
|
getDevicePrefs(mContext).edit().putString(KEY_ICON_STATE, iconState).apply();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void verifyIconChanged() {
|
|
|
|
|
String iconState = mIconProvider.getSystemIconState();
|
|
|
|
|
if (!iconState.equals(getDevicePrefs(mContext).getString(KEY_ICON_STATE, ""))) {
|
|
|
|
|
onSystemIconStateChanged(iconState);
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-05-17 13:23:08 -07:00
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void onSharedPreferenceChanged(SharedPreferences prefs, String key) {
|
|
|
|
|
if (Themes.KEY_THEMED_ICONS.equals(key)) {
|
|
|
|
|
mIconProvider.setIconThemeSupported(Themes.isThemedIconEnabled(mContext));
|
|
|
|
|
verifyIconChanged();
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-05-03 19:59:51 -07:00
|
|
|
}
|
2013-06-11 14:45:48 -04:00
|
|
|
}
|