summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorspycrab <spycrab@users.noreply.github.com>2017-07-07 08:36:18 +0200
committerspycrab <spycrab@users.noreply.github.com>2017-07-08 10:47:31 +0200
commit63d401102b85d96a166ba11dfa8a542f5f393146 (patch)
tree0df488ae1950044d18f6fb43ceea61100ac543dc /Source/Core
parentcf79ff236691b22073545a266ac4d9bc382c6b14 (diff)
Qt: Make the "In Development" warning less threatening
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinQt2/InDevelopmentWarning.cpp15
1 files changed, 7 insertions, 8 deletions
diff --git a/Source/Core/DolphinQt2/InDevelopmentWarning.cpp b/Source/Core/DolphinQt2/InDevelopmentWarning.cpp
index aef83ffcff..bacbf6de21 100644
--- a/Source/Core/DolphinQt2/InDevelopmentWarning.cpp
+++ b/Source/Core/DolphinQt2/InDevelopmentWarning.cpp
@@ -59,16 +59,15 @@ InDevelopmentWarning::InDevelopmentWarning(QWidget* parent)
icon->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
QString body_text = tr(
- "<p>DolphinQt is a new experimental GUI that is eventually intended to replace "
- "the current GUI based on wxWidgets. The implementation is <b>very "
- "incomplete</b>, even basic functionality like changing settings and "
- "attaching gamepads may be missing or not work at all.</p>\n"
- "<p>Only developers working on the DolphinQt implementation should use it at "
+ "<p>DolphinQt is a new experimental GUI that is intended to replace "
+ "the current GUI based on wxWidgets. The implementation is <b>currently "
+ "incomplete</b> so some functionality (like changing certain settings) may be missing.</p>\n"
+ "<p>Only developers working on the DolphinQt implementation and curious testers should use "
+ "it at "
"the present time; normal users are recommended to continue using the "
"older DolphinWX GUI for the time being.</p>\n"
- "<p><big><b>Bug Reports:</b></big> At the current time there is no point making bug reports "
- "about the DolphinQt GUI as the list of what is broken is much longer "
- "than the list of things that work.</p>\n");
+ "<h3>Bug Reports</h3><p>At the current time there is no point making bug reports "
+ "about DolphinQt GUI's missing features as the developers are already aware of those.</p>\n");
body->setText(body_text);
body->setWordWrap(true);
body->setForegroundRole(QPalette::Text);