mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 22:35:27 +00:00
Tags can never include a comma
And no, I don't want "\," to be legal in our tag, either. Way too much pain for way too little gain. Fixes #560 Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
38403f6c98
commit
634df1a337
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ void GroupedLineEdit::addBlock(int start, int end)
|
|||
Private::Block block;
|
||||
block.start = start;
|
||||
block.end = end;
|
||||
block.text = text().mid(start, end - start + 1).trimmed();
|
||||
block.text = text().mid(start, end - start + 1).remove(',').trimmed();
|
||||
d->blocks.append(block);
|
||||
viewport()->update();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue