Skip to content

Commit

Permalink
(#241) fix Braille dots position on screen
Browse files Browse the repository at this point in the history
  • Loading branch information
zuevval committed Sep 26, 2020
1 parent 1226aeb commit 2403ede
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.github.braillesystems.learnbraille.ui.views

import android.annotation.SuppressLint
import android.content.Context
import android.os.Build
import android.util.AttributeSet
Expand All @@ -19,7 +20,8 @@ import org.koin.core.KoinComponent
import org.koin.core.inject
import timber.log.Timber

class BrailleDotView : androidx.appcompat.widget.AppCompatCheckBox {
@SuppressLint("AppCompatCustomView") // Causes BrailleDotView misplacement
class BrailleDotView : CheckBox {

constructor(context: Context) : super(context)

Expand Down

0 comments on commit 2403ede

Please sign in to comment.