Renamed Gitnuro composable to App
This commit is contained in:
parent
fda901c0f2
commit
894138b39f
1 changed files with 2 additions and 2 deletions
|
@ -141,13 +141,13 @@ class Main {
|
|||
appStateManager.repositoryTabChanged(key, path)
|
||||
}
|
||||
|
||||
Gitnuro(gitManager, path, tabName)
|
||||
App(gitManager, path, tabName)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Composable
|
||||
fun Gitnuro(gitManager: GitManager, repositoryPath: String?, tabName: MutableState<String>) {
|
||||
fun App(gitManager: GitManager, repositoryPath: String?, tabName: MutableState<String>) {
|
||||
LaunchedEffect(gitManager) {
|
||||
if (repositoryPath != null)
|
||||
gitManager.openRepository(repositoryPath)
|
||||
|
|
Loading…
Reference in a new issue