Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import android.content.Context
import android.content.SharedPreferences
import android.content.pm.PackageManager.NameNotFoundException
import android.os.Build
import android.os.Handler
import android.os.Looper
import android.preference.PreferenceManager
import android.util.Log
import android.util.SparseArray
Expand Down Expand Up @@ -216,7 +218,7 @@ open class ChangeLog @JvmOverloads constructor(
// Show "More…" button if we're only displaying a partial change log.
builder.setNegativeButton(
R.string.changelog_show_full
) { _, _ -> fullLogDialog.show() }
) { _, _ -> Handler(Looper.getMainLooper()).post{fullLogDialog.show()} }
}

return builder.create()
Expand Down