Skip to content

Commit bdb2ad4

Browse files
authored
Merge pull request #148 from mabd-dev/fix/infoButton
Fix/info button
2 parents b365081 + 78f38b6 commit bdb2ad4

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

app/src/main/java/org/nsh07/pomodoro/ui/settingsScreen/SettingsScreen.kt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,8 @@ private fun SettingsScreen(
280280
AlarmSettings(
281281
settingsState = settingsState,
282282
onAction = onAction,
283-
onBack = backStack::removeLastOrNull
283+
onBack = backStack::removeLastOrNull,
284+
modifier = modifier,
284285
)
285286
}
286287
entry<Screen.Settings.Appearance> {
@@ -289,7 +290,8 @@ private fun SettingsScreen(
289290
isPlus = isPlus,
290291
onAction = onAction,
291292
setShowPaywall = setShowPaywall,
292-
onBack = backStack::removeLastOrNull
293+
onBack = backStack::removeLastOrNull,
294+
modifier = modifier,
293295
)
294296
}
295297
entry<Screen.Settings.Timer> {
@@ -304,6 +306,7 @@ private fun SettingsScreen(
304306
onAction = onAction,
305307
setShowPaywall = setShowPaywall,
306308
onBack = backStack::removeLastOrNull,
309+
modifier = modifier,
307310
)
308311
}
309312
}

0 commit comments

Comments
 (0)