Skip to content

Commit

Permalink
4.19 fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
zuevval committed Apr 20, 2020
1 parent 3b963ef commit 713eff0
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 @@ -26,7 +26,7 @@ class HelpFragment : Fragment() {
).apply {

updateTitle(getString(R.string.help_title))
helpMessage.movementMethod= ScrollingMovementMethod()
helpMessage.movementMethod = ScrollingMovementMethod()
helpMessage.text = getFormattedArg(helpMessageArgName)

}.root
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class FirstInfoFragment : AbstractLesson(R.string.lessons_help_info) {
require(step.data is FirstInfo)
titleTextView.text = step.title
infoTextView.text = step.data.text
infoTextView.movementMethod= ScrollingMovementMethod()
infoTextView.movementMethod = ScrollingMovementMethod()

getDBInstance().apply {
nextButton.setOnClickListener {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class InfoFragment : AbstractLesson(R.string.lessons_help_info) {
require(step.data is Info)
titleTextView.text = step.title
infoTextView.text = step.data.text
infoTextView.movementMethod= ScrollingMovementMethod()
infoTextView.movementMethod = ScrollingMovementMethod()

getDBInstance().apply {
prevButton.setOnClickListener {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class LastInfoFragment : AbstractLesson(R.string.lessons_help_last_info) {
require(step.data is LastInfo)
titleTextView.text = step.title
infoTextView.text = step.data.text
infoTextView.movementMethod= ScrollingMovementMethod()
infoTextView.movementMethod = ScrollingMovementMethod()

getDBInstance().run {
prevButton.setOnClickListener {
Expand Down
2 changes: 1 addition & 1 deletion android/app/src/main/res/layout/fragment_help.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
android:paddingTop="2dp"
android:paddingEnd="2dp"
android:paddingBottom="2dp"
android:scrollbars = "vertical"
android:scrollbars="vertical"
android:text="@string/default_help_message"
android:textSize="18sp"
app:autoSizeTextType="none" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
android:id="@+id/info_text_view"
android:layout_width="@dimen/lessons_info_width"
android:layout_height="@dimen/lessons_info_height"
android:scrollbars = "vertical"
android:scrollbars="vertical"
android:text=""
android:textSize="@dimen/lessons_info_text_size"
app:layout_constraintBottom_toBottomOf="parent"
Expand Down

0 comments on commit 713eff0

Please sign in to comment.