From c6647c0a6b136de1d369f9e629d47c36e20c4ea7 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 5 Sep 2018 16:17:33 +0200 Subject: Applied code convention guidelines :wrench: :truck: --- app/src/main/java/me/texx/Texx/PhotoEditorActivity.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/src/main/java/me/texx/Texx/PhotoEditorActivity.kt') diff --git a/app/src/main/java/me/texx/Texx/PhotoEditorActivity.kt b/app/src/main/java/me/texx/Texx/PhotoEditorActivity.kt index a971f5c..1dd39c9 100644 --- a/app/src/main/java/me/texx/Texx/PhotoEditorActivity.kt +++ b/app/src/main/java/me/texx/Texx/PhotoEditorActivity.kt @@ -100,7 +100,7 @@ class PhotoEditorActivity : AppCompatActivity() { if (currentlyDrawing) seekbar_color.visibility = View.VISIBLE else { seekbar_color.visibility = View.GONE - button_draw.background = ContextCompat.getDrawable(this, R.drawable.ic_mode_edit_white_24dp) + button_draw.background = ContextCompat.getDrawable(this, R.drawable.btn_edit) } } @@ -115,7 +115,7 @@ class PhotoEditorActivity : AppCompatActivity() { val inputManager = this@PhotoEditorActivity.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager inputManager.showSoftInput(text_edit, 0) } else { - button_type.background = ContextCompat.getDrawable(this, R.drawable.ic_text_fields_white_24dp) + button_type.background = ContextCompat.getDrawable(this, R.drawable.btn_text) seekbar_color.visibility = View.GONE text_edit.visibility = View.GONE } -- cgit v1.2.3