mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-21 11:23:51 +00:00
adjusted startup warning message for recent improvements regarding loading/saving
(cherry picked from commit e0e9e7f8c2
)
This commit is contained in:
parent
0eca29eb62
commit
30b28bfd07
1 changed files with 4 additions and 2 deletions
|
@ -104,14 +104,16 @@ CSVDoc::StartupDialogue::StartupDialogue() : mWidth (0), mColumn (2)
|
|||
layout->addWidget (createButtons());
|
||||
layout->addWidget (createTools());
|
||||
|
||||
/// \todo remove this label once loading and saving are fully implemented
|
||||
QLabel *warning = new QLabel ("<font color=Red>WARNING:<p>OpenCS is in alpha stage.<br>The code for loading and saving is incomplete.<br>This version of OpenCS is only a preview.<br>Do NOT use it for real editing!<br>You will lose records both on loading and on saving.<p>Please note:<br>If you lose data and come to the OpenMW forum to complain,<br>we will mock you.</font color>");
|
||||
/// \todo remove this label once we are feature complete and convinced that this thing is
|
||||
/// working properly.
|
||||
QLabel *warning = new QLabel ("<font color=Red>WARNING: OpenMW-CS is in alpha stage.<p>The editor is not feature complete and not sufficiently tested.<br>In theory your data should be safe. But we strongly advice to make backups regularly if you are working with live data.</font color>");
|
||||
|
||||
QFont font;
|
||||
font.setPointSize (12);
|
||||
font.setBold (true);
|
||||
|
||||
warning->setFont (font);
|
||||
warning->setWordWrap (true);
|
||||
|
||||
layout->addWidget (warning, 1);
|
||||
|
||||
|
|
Loading…
Reference in a new issue