Disabled scrolling issue on shortened commentViews.

captchafix
Florens Douwes 11 years ago
parent 3d7298ff05
commit 6e36a28564
  1. 4
      Chan/src/org/floens/chan/view/PostView.java

@ -133,7 +133,11 @@ public class PostView extends LinearLayout implements View.OnClickListener, View
if (!TextUtils.isEmpty(post.comment)) {
commentView.setVisibility(View.VISIBLE);
commentView.setText(post.comment);
if (manager.getLoadable().isThreadMode()) {
commentView.setMovementMethod(new PostViewMovementMethod());
}
commentView.setOnClickListener(this);
commentView.setOnLongClickListener(this);

Loading…
Cancel
Save