add option to disable underlined links
closes sk22#847
This commit is contained in:
@@ -5,6 +5,7 @@ import android.text.TextPaint;
|
||||
import android.text.style.CharacterStyle;
|
||||
import android.view.View;
|
||||
|
||||
import org.joinmastodon.android.GlobalUserPreferences;
|
||||
import org.joinmastodon.android.model.Hashtag;
|
||||
import org.joinmastodon.android.ui.utils.UiUtils;
|
||||
|
||||
@@ -34,7 +35,7 @@ public class LinkSpan extends CharacterStyle {
|
||||
@Override
|
||||
public void updateDrawState(TextPaint tp) {
|
||||
tp.setColor(color=tp.linkColor);
|
||||
tp.setUnderlineText(true);
|
||||
tp.setUnderlineText(GlobalUserPreferences.underlinedLinks);
|
||||
}
|
||||
|
||||
public void onClick(Context context){
|
||||
|
||||
Reference in New Issue
Block a user