Browse Source

android: Suppress lint in InsetsHelper

pull/15/merge
Charles Lombardo 3 years ago
committed by bunnei
parent
commit
8a34e58ad6
  1. 2
      src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/InsetsHelper.kt

2
src/android/app/src/main/java/org/yuzu/yuzu_emu/utils/InsetsHelper.kt

@ -1,5 +1,6 @@
package org.yuzu.yuzu_emu.utils
import android.annotation.SuppressLint
import android.content.Context
import android.view.ViewGroup.MarginLayoutParams
import androidx.core.graphics.Insets
@ -17,6 +18,7 @@ object InsetsHelper {
appBarLayout.layoutParams = mlpAppBar
}
@SuppressLint("DiscouragedApi")
fun getSystemGestureType(context: Context): Int {
val resources = context.resources
val resourceId =

Loading…
Cancel
Save