Skip to content
Snippets Groups Projects
Commit 260d3d60 authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Fixed a crash due to misnamed UI elements

parent 7a009442
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ class ChatlineFragment : ServiceBoundFragment() {
@BindView(R.id.history_panel)
lateinit var historyPanel: SlidingUpPanelLayout
@BindView(R.id.autocomplete_list_expanded)
@BindView(R.id.autocomplete_list)
lateinit var autoCompleteList: RecyclerView
@Inject
......
......@@ -31,7 +31,7 @@ class TopicFragment : SettingsFragment() {
@BindView(R.id.formatting_toolbar)
lateinit var toolbar: RichToolbar
@BindView(R.id.autocomplete_list_expanded)
@BindView(R.id.autocomplete_list)
lateinit var autoCompleteList: RecyclerView
@Inject
......@@ -49,7 +49,7 @@ class TopicFragment : SettingsFragment() {
@Inject
lateinit var formatSerializer: IrcFormatSerializer
lateinit var editorHelper: EditorHelper
private lateinit var editorHelper: EditorHelper
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?): View? {
......
......@@ -59,7 +59,7 @@
app:tint="?attr/colorAccent" />
<de.kuschku.quasseldroid.util.ui.AutoCompleteRecyclerView
android:id="@+id/autocomplete_list_expanded"
android:id="@+id/autocomplete_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintBottom_toTopOf="@+id/formatting_toolbar_container" />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment