-
-
Notifications
You must be signed in to change notification settings - Fork 469
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AppControl: Show confirmation before enabling/disabling apps
Closes #868
- Loading branch information
Showing
4 changed files
with
56 additions
and
32 deletions.
There are no files selected for viewing
5 changes: 2 additions & 3 deletions
5
app/src/main/java/eu/darken/sdmse/appcontrol/ui/list/AppControlListEvents.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
package eu.darken.sdmse.appcontrol.ui.list | ||
|
||
import eu.darken.sdmse.appcleaner.core.AppJunk | ||
|
||
sealed class AppControlListEvents { | ||
data class ConfirmDeletion(val appJunk: AppJunk) : AppControlListEvents() | ||
data class ConfirmDeletion(val items: List<AppControlListAdapter.Item>) : AppControlListEvents() | ||
data class ExclusionsCreated(val count: Int) : AppControlListEvents() | ||
data object ShowSizeSortCaveat : AppControlListEvents() | ||
data class ConfirmToggle(val items: List<AppControlListAdapter.Item>) : AppControlListEvents() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters