mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2025-01-04 07:17:12 +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;
|
String hashTags;
|
||||||
switch (seekBar.getProgress()) {
|
switch (seekBar.getProgress()) {
|
||||||
case 0:
|
case 0:
|
||||||
hashTags = "######";
|
hashTags = "###### ";
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
hashTags = "#####";
|
hashTags = "##### ";
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
hashTags = "####";
|
hashTags = "#### ";
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
hashTags = "###";
|
hashTags = "### ";
|
||||||
break;
|
break;
|
||||||
case 4:
|
case 4:
|
||||||
hashTags = "##";
|
hashTags = "## ";
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
hashTags = "#";
|
hashTags = "# ";
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (end != start) {
|
if (end != start) {
|
||||||
|
Loading…
Reference in New Issue
Block a user