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

Commit c37f89df authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix-up starting style&wallpaper from search" into main

parents 27b7b2fa a5c93b11
Loading
Loading
Loading
Loading
+3 −5
Original line number Diff line number Diff line
@@ -17,7 +17,6 @@
package com.android.settings.wallpaper;

import android.app.WallpaperManager;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;

@@ -81,10 +80,9 @@ public class WallpaperSuggestionActivity extends StyleSuggestionActivityBase imp
                    SearchIndexableRaw data = new SearchIndexableRaw(context);
                    data.title = controller.getTitle();
                    data.screenTitle = data.title;
                    ComponentName component = controller.getComponentName();
                    data.intentTargetPackage = component.getPackageName();
                    data.intentTargetClass = component.getClassName();
                    data.intentAction = controller.getComponentActionName();
                    data.intentTargetPackage = context.getPackageName();
                    data.intentTargetClass = WallpaperSuggestionActivity.class.getName();
                    data.intentAction = Intent.ACTION_MAIN;
                    data.key = SUPPORT_SEARCH_INDEX_KEY;
                    data.keywords = controller.getKeywords();
                    result.add(data);