Merge pull request #3419 from deltachat/adb/issue-3291

don't increase reaction selector's font size according to system
This commit is contained in:
adb
2024-11-12 15:29:17 +01:00
committed by GitHub
2 changed files with 4 additions and 4 deletions
@@ -105,7 +105,7 @@ public class AddReactionView extends LinearLayout {
} else {
x += offset;
}
ViewUtil.setLeftMargin(this, x);
ViewUtil.setLeftMargin(this, Math.max(x, 0));
int y = Math.max((int)parentView.getY() - offset, offset/2);
ViewUtil.setTopMargin(this, y);