Block off unfinished features

This commit is contained in:
MM20
2026-01-24 16:18:27 +01:00
parent a2c72a9d0e
commit 8aea72b67b
2 changed files with 5 additions and 3 deletions

View File

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

View File

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