Minor cleanup

This commit is contained in:
arkon
2022-04-24 14:39:51 -04:00
parent 29a0989f28
commit 0ec9496d26
9 changed files with 31 additions and 43 deletions

View File

@@ -73,7 +73,7 @@ fun WebViewScreen(
navigator.navigateBack()
}
},
isEnabled = navigator.canGoBack,
enabled = navigator.canGoBack,
),
AppBar.Action(
title = stringResource(R.string.action_webview_forward),
@@ -83,7 +83,7 @@ fun WebViewScreen(
navigator.navigateForward()
}
},
isEnabled = navigator.canGoForward,
enabled = navigator.canGoForward,
),
AppBar.OverflowAction(
title = stringResource(R.string.action_webview_refresh),