mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-09-23 02:02:40 +01:00
Fix incorrect quote and link preview compose layout.
This commit is contained in:
@@ -153,8 +153,8 @@ public class InputPanel extends ConstraintLayout
|
||||
|
||||
this.composeContainer = findViewById(R.id.compose_bubble);
|
||||
this.stickerSuggestion = findViewById(R.id.input_panel_sticker_suggestion);
|
||||
this.quoteViewStub = new Stub<>(findViewById(R.id.quote_view_stub));
|
||||
this.linkPreviewStub = new Stub<>(findViewById(R.id.link_preview_stub));
|
||||
this.quoteViewStub = new Stub<>(findViewById(R.id.quote_view));
|
||||
this.linkPreviewStub = new Stub<>(findViewById(R.id.link_preview));
|
||||
this.mediaKeyboard = findViewById(R.id.emoji_toggle);
|
||||
this.composeText = findViewById(R.id.embedded_text_editor);
|
||||
this.composeTextContainer = findViewById(R.id.embedded_text_editor_container);
|
||||
|
||||
@@ -88,7 +88,7 @@
|
||||
tools:visibility="visible" />
|
||||
|
||||
<ViewStub
|
||||
android:id="@+id/quote_view_stub"
|
||||
android:id="@+id/quote_view"
|
||||
android:inflatedId="@+id/quote_view"
|
||||
android:layout="@layout/conversation_input_quote_view"
|
||||
android:layout_width="0dp"
|
||||
@@ -100,7 +100,7 @@
|
||||
app:layout_constraintTop_toBottomOf="@+id/edit_message_title" />
|
||||
|
||||
<ViewStub
|
||||
android:id="@+id/link_preview_stub"
|
||||
android:id="@+id/link_preview"
|
||||
android:inflatedId="@+id/link_preview"
|
||||
android:layout="@layout/conversation_input_link_preview_view"
|
||||
android:layout_width="0dp"
|
||||
|
||||
Reference in New Issue
Block a user