support string res for small text item
This commit is contained in:
parent
68921d0f0b
commit
969f29e2e9
|
@ -835,7 +835,11 @@ public class SettingsFragment extends MastodonToolbarFragment implements Provide
|
||||||
}
|
}
|
||||||
|
|
||||||
private class SmallTextItem extends Item {
|
private class SmallTextItem extends Item {
|
||||||
private String text;
|
private final String text;
|
||||||
|
|
||||||
|
public SmallTextItem(@StringRes int text) {
|
||||||
|
this.text = getString(text);
|
||||||
|
}
|
||||||
|
|
||||||
public SmallTextItem(String text) {
|
public SmallTextItem(String text) {
|
||||||
this.text = text;
|
this.text = text;
|
||||||
|
|
Loading…
Reference in New Issue