android: EmulationActivity: Fix variable shadowing in fragment creation.
This commit is contained in:
parent
f45a0b94d6
commit
b5b4e50c32
1 changed files with 2 additions and 2 deletions
|
@ -72,12 +72,12 @@ open class EmulationActivity : AppCompatActivity() {
|
||||||
setContentView(R.layout.activity_emulation)
|
setContentView(R.layout.activity_emulation)
|
||||||
|
|
||||||
// Find or create the EmulationFragment
|
// Find or create the EmulationFragment
|
||||||
var emulationFragment =
|
emulationFragment =
|
||||||
supportFragmentManager.findFragmentById(R.id.frame_emulation_fragment) as EmulationFragment?
|
supportFragmentManager.findFragmentById(R.id.frame_emulation_fragment) as EmulationFragment?
|
||||||
if (emulationFragment == null) {
|
if (emulationFragment == null) {
|
||||||
emulationFragment = EmulationFragment.newInstance(path)
|
emulationFragment = EmulationFragment.newInstance(path)
|
||||||
supportFragmentManager.beginTransaction()
|
supportFragmentManager.beginTransaction()
|
||||||
.add(R.id.frame_emulation_fragment, emulationFragment)
|
.add(R.id.frame_emulation_fragment, emulationFragment!!)
|
||||||
.commit()
|
.commit()
|
||||||
}
|
}
|
||||||
title = selectedTitle
|
title = selectedTitle
|
||||||
|
|
Loading…
Reference in a new issue