Revert "Block off unfinished features"

This reverts commit 8aea72b67b.
This commit is contained in:
MM20
2026-01-24 18:14:30 +01:00
parent e7d794d9c2
commit 0171c07dab
2 changed files with 3 additions and 5 deletions

View File

@@ -129,7 +129,7 @@ fun GestureSettingsScreen() {
icon = R.drawable.swipe_right_alt_24px,
value = swipeRight,
onValueChanged = { viewModel.setSwipeRight(it) },
options = options, //optionsWithFeed,
options = optionsWithFeed,
app = swipeRightApp,
appIcon = swipeRightAppIcon,
onAppChanged = { viewModel.setSwipeRightApp(it) }

View File

@@ -46,14 +46,13 @@ fun IntegrationsSettingsScreen() {
backStack.add(MediaIntegrationSettingsRoute)
}
)
/*
Preference(
title = stringResource(R.string.preference_feed_integration),
icon = R.drawable.news_24px,
onClick = {
backStack.add(FeedIntegrationSettingsRoute)
}
)*/
)
}
}
item {
@@ -97,7 +96,6 @@ fun IntegrationsSettingsScreen() {
backStack.add(BreezyWeatherSettingsRoute)
}
)
/*
if (isAtLeastApiLevel(29)) {
Preference(
title = stringResource(R.string.preference_smartspacer_integration),
@@ -106,7 +104,7 @@ fun IntegrationsSettingsScreen() {
backStack.add(SmartspacerSettingsRoute)
}
)
}*/
}
}
}
}