mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-19 05:53:35 +00:00
* GuiAbout.cpp:
- unmask e-mail addresses in the credits pane. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@31935 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
e3c11c0894
commit
27402a1559
@ -58,9 +58,14 @@ static QString credits()
|
|||||||
line = ts.readLine();
|
line = ts.readLine();
|
||||||
if (line.startsWith("@b"))
|
if (line.startsWith("@b"))
|
||||||
out << "<b>" << line.mid(2) << "</b>";
|
out << "<b>" << line.mid(2) << "</b>";
|
||||||
else if (line.startsWith("@i"))
|
else if (line.startsWith("@i")) {
|
||||||
|
if (line.startsWith("@iE-mail")) {
|
||||||
|
// unmask email
|
||||||
|
line.replace(QString(" () "), QString("@"));
|
||||||
|
line.replace(QString(" ! "), QString("."));
|
||||||
|
}
|
||||||
out << "<i>" << line.mid(2) << "</i>";
|
out << "<i>" << line.mid(2) << "</i>";
|
||||||
else
|
} else
|
||||||
out << line;
|
out << line;
|
||||||
out << "<br>";
|
out << "<br>";
|
||||||
} while (!line.isNull());
|
} while (!line.isNull());
|
||||||
|
@ -278,6 +278,8 @@ What's new
|
|||||||
|
|
||||||
- Fix double blinking cursors in Graphics/Nomenclature dialogs (bug 3852).
|
- Fix double blinking cursors in Graphics/Nomenclature dialogs (bug 3852).
|
||||||
|
|
||||||
|
- Fix display of e-mail addresses in the About LyX dialog.
|
||||||
|
|
||||||
|
|
||||||
* DOCUMENTATION AND LOCALIZATION
|
* DOCUMENTATION AND LOCALIZATION
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user