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

Commit a7281661 authored by Yash Garg's avatar Yash Garg 💬 Committed by Mohammed Althaf T
Browse files

chore: some fixes

parent 8cd63668
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -227,6 +227,8 @@ public class GridFolder extends Folder implements OnAlarmListener {
            wobbleFolder(false);
        }

        showOrHideDesktop(mLauncher, false);

        super.handleClose(animate);
    }

+4 −4
Original line number Diff line number Diff line
@@ -63,10 +63,10 @@ class WidgetsActivity : Activity(), OnActionClickListener {

        val addedWidgets = findViewById<RecyclerView>(R.id.added_widgets_recycler_view)
        addedWidgets.apply {
            addedWidgets.layoutManager = LinearLayoutManager(this@WidgetsActivity)
            addedWidgets.setHasFixedSize(false)
            addedWidgets.isNestedScrollingEnabled = false
            addedWidgets.addItemDecoration(
            layoutManager = LinearLayoutManager(this@WidgetsActivity)
            setHasFixedSize(false)
            isNestedScrollingEnabled = false
            addItemDecoration(
                DividerItemDecoration(this@WidgetsActivity, DividerItemDecoration.VERTICAL)
            )
        }