2020-01-26 18:17:00 +01:00
|
|
|
package info.nightscout.androidaps.activities
|
|
|
|
|
|
|
|
import android.content.Context
|
2020-03-08 22:42:36 +01:00
|
|
|
import dagger.android.support.DaggerAppCompatActivity
|
2020-01-26 18:17:00 +01:00
|
|
|
import info.nightscout.androidaps.utils.LocaleHelper
|
|
|
|
|
2020-03-08 22:42:36 +01:00
|
|
|
open class DialogAppCompatActivity : DaggerAppCompatActivity() {
|
2020-01-26 18:17:00 +01:00
|
|
|
public override fun attachBaseContext(newBase: Context) {
|
|
|
|
super.attachBaseContext(LocaleHelper.wrap(newBase))
|
|
|
|
}
|
|
|
|
}
|