fix: Icon not responding to mouse cursor

Signed-off-by: Pun Butrach <pun.butrach@gmail.com>
This commit is contained in:
Pun Butrach
2025-09-20 00:39:54 +07:00
parent 86740e195c
commit 354b64bbc2
2 changed files with 2 additions and 1 deletions

View File

@@ -30,6 +30,7 @@ older (i.e., Lawnchair `15-dev`).
* Fix Private Space crash when Lawnchair is set as Launcher due to flags only available on A16
* Fix crash on a device with strict export receiver requirements on A14
* Interactable widget crashing due to App Transition Manager being null (C7evQZDJ)
* Icon not responding to mouse cursor
#### Known Bugs
* Preview can't show device wallpaper -> (lIxkAYGg)

View File

@@ -303,7 +303,7 @@ public class BubbleTextView extends TextView implements ItemInfoUpdateReceiver,
public BubbleTextView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
mActivity = ActivityContext.lookupContext(context);
FastBitmapDrawable.setFlagHoverEnabled(LawnchairApp.isRecentsEnabled() && enableCursorHoverStates());
FastBitmapDrawable.setFlagHoverEnabled(enableCursorHoverStates());
pref2 = PreferenceManager2.getInstance(context);
mMinimizedStateDescription = getContext().getString(
R.string.app_minimized_state_description);