mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 20:58:34 +01:00
modify link regex to allow for no destination to be specified
This commit is contained in:
parent
af1918d545
commit
979dce510e
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ namespace MLEM.Ui {
|
|||
};
|
||||
|
||||
this.TextFormatter = new TextFormatter();
|
||||
this.TextFormatter.Codes.Add(new Regex("<l ([^>]+)>"), (f, m, r) => new LinkCode(m, r, 1 / 16F, 0.85F, t => this.Controls.MousedElement is Paragraph.Link link && link.Token == t));
|
||||
this.TextFormatter.Codes.Add(new Regex("<l(?: ([^>]+))?>"), (f, m, r) => new LinkCode(m, r, 1 / 16F, 0.85F, t => this.Controls.MousedElement is Paragraph.Link link && link.Token == t));
|
||||
}
|
||||
|
||||
public override void Update(GameTime time) {
|
||||
|
|
Loading…
Reference in a new issue