mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2024-11-07 03:07:26 +01:00
Fix Header problem in markdown bottom bar.
This commit is contained in:
parent
bf8103aa17
commit
8a999a04c3
@ -169,22 +169,22 @@ public class MarkdownBottomBarRecyclerViewAdapter extends RecyclerView.Adapter<R
|
||||
String hashTags;
|
||||
switch (seekBar.getProgress()) {
|
||||
case 0:
|
||||
hashTags = "######";
|
||||
hashTags = "###### ";
|
||||
break;
|
||||
case 1:
|
||||
hashTags = "#####";
|
||||
hashTags = "##### ";
|
||||
break;
|
||||
case 2:
|
||||
hashTags = "####";
|
||||
hashTags = "#### ";
|
||||
break;
|
||||
case 3:
|
||||
hashTags = "###";
|
||||
hashTags = "### ";
|
||||
break;
|
||||
case 4:
|
||||
hashTags = "##";
|
||||
hashTags = "## ";
|
||||
break;
|
||||
default:
|
||||
hashTags = "#";
|
||||
hashTags = "# ";
|
||||
break;
|
||||
}
|
||||
if (end != start) {
|
||||
|
Loading…
Reference in New Issue
Block a user