Skip to content

Commit

Permalink
whoops³
Browse files Browse the repository at this point in the history
  • Loading branch information
AkosPaha01 committed Sep 23, 2022
1 parent 121d755 commit c3406df
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Logs : AppCompatActivity() {
@SuppressLint("CommitTransaction")
override fun onCreate(savedInstanceState: Bundle?) {
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q) {
applyTheme(installPack = true)
applyTheme(main = true)
}
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_logs)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class MainActivity : AppCompatActivity() {
@SuppressLint("NotifyDataSetChanged", "ShowToast")
override fun onCreate(savedInstanceState: Bundle?) {
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q) {
applyTheme(installPack = true)
applyTheme(main = true)
}
super.onCreate(savedInstanceState)
binding = ActivityMainBinding.inflate(layoutInflater)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class PreferencesActivity : AppCompatActivity() {
@RequiresApi(Build.VERSION_CODES.R)
override fun onCreate(savedInstanceState: Bundle?) {
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q) {
applyTheme(installPack = true)
applyTheme(info = true)
}
super.onCreate(savedInstanceState)
binding = ActivityPreferencesBinding.inflate(layoutInflater)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ReadMoreReadFast : AppCompatActivity() {
@SuppressLint("SetTextI18n")
override fun onCreate(savedInstanceState: Bundle?) {
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q) {
applyTheme(installPack = true)
applyTheme()
}
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_read_more_read_fast)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class ShareFlags : AppCompatActivity() {
@SuppressLint("NotifyDataSetChanged")
override fun onCreate(savedInstanceState: Bundle?) {
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q) {
applyTheme(installPack = true)
applyTheme(shareFlags = true)
}
super.onCreate(savedInstanceState)
binding = ActivityShareFlagsBinding.inflate(layoutInflater)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class SwitchKeyboardWidgetConfigureActivity : Activity() {

public override fun onCreate(icicle: Bundle?) {
if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q) {
applyTheme(installPack = true)
this.applyTheme()
}
super.onCreate(icicle)

Expand Down

0 comments on commit c3406df

Please sign in to comment.