Commit de46b389 authored by Thomas's avatar Thomas
Browse files

Open profiles only trough avatars

parent 926caf2f
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -841,7 +841,7 @@ public class StatusAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>
                }
            });
            holder.binding.actionButtonFavorite.setChecked(statusToDeal.favourited);
            holder.binding.statusUserInfo.setOnClickListener(v -> {
            holder.binding.avatar.setOnClickListener(v -> {
                if (remote) {
                    Toasty.info(context, context.getString(R.string.retrieve_remote_status), Toasty.LENGTH_SHORT).show();
                    searchVM.search(BaseMainActivity.currentInstance, BaseMainActivity.currentToken, statusToDeal.uri, null, "statuses", false, true, false, 0, null, null, 1)
@@ -1657,6 +1657,9 @@ public class StatusAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>
        });
        if (!minified && canBeFederated) {
            holder.binding.mainContainer.setOnClickListener(v -> holder.binding.statusContent.callOnClick());
            holder.binding.statusUserInfo.setOnClickListener(v -> {
                holder.binding.statusContent.callOnClick();
            });
            holder.binding.statusContent.setOnClickListener(v -> {
                if (status.isFocused || v.getTag() == SpannableHelper.CLICKABLE_SPAN) {
                    if (v.getTag() == SpannableHelper.CLICKABLE_SPAN) {
+14 −0
Original line number Diff line number Diff line
Added:
- Peertube support
- Compose shortcut
- Long press compose button to write with another account
- Edit description and focus for media (for the next Mastodon release)

Changed:
- Cross actions with two accounts display a dialog
- Order & compact og values when sharing > title - url - content
- Tap on top message (user info) open threads

Fixed:
- Text cleared when adding a media
- Fix crashes
 No newline at end of file