diff options
| author | bexnoss <82064510+bexnoss@users.noreply.github.com> | 2022-01-14 00:01:05 +0100 | 
|---|---|---|
| committer | bexnoss <82064510+bexnoss@users.noreply.github.com> | 2022-01-14 00:01:05 +0100 | 
| commit | 395e2655648dbb80d089077e6a6b2530f4876c63 (patch) | |
| tree | 99c83cd45a535dea11c0e29386478be3238e288a /launcher/ui | |
| parent | 46a3b4de6ebb625b958a69aba85316171d3fa168 (diff) | |
| download | PrismLauncher-395e2655648dbb80d089077e6a6b2530f4876c63.tar.gz PrismLauncher-395e2655648dbb80d089077e6a6b2530f4876c63.tar.bz2 PrismLauncher-395e2655648dbb80d089077e6a6b2530f4876c63.zip | |
Add offline mode disclaimer
Diffstat (limited to 'launcher/ui')
| -rw-r--r-- | launcher/ui/dialogs/OfflineLoginDialog.ui | 4 | ||||
| -rw-r--r-- | launcher/ui/pages/global/AccountListPage.cpp | 8 | 
2 files changed, 9 insertions, 3 deletions
| diff --git a/launcher/ui/dialogs/OfflineLoginDialog.ui b/launcher/ui/dialogs/OfflineLoginDialog.ui index d8964a2e..4577d361 100644 --- a/launcher/ui/dialogs/OfflineLoginDialog.ui +++ b/launcher/ui/dialogs/OfflineLoginDialog.ui @@ -6,8 +6,8 @@     <rect>      <x>0</x>      <y>0</y> -    <width>400</width> -    <height>150</height> +    <width>500</width> +    <height>250</height>     </rect>    </property>    <property name="sizePolicy"> diff --git a/launcher/ui/pages/global/AccountListPage.cpp b/launcher/ui/pages/global/AccountListPage.cpp index b9aa7628..1c27d5b7 100644 --- a/launcher/ui/pages/global/AccountListPage.cpp +++ b/launcher/ui/pages/global/AccountListPage.cpp @@ -158,7 +158,13 @@ void AccountListPage::on_actionAddOffline_triggered()  {      MinecraftAccountPtr account = OfflineLoginDialog::newAccount(          this, -        tr("Please enter your desired username to add your offline account.") +        tr("Please enter your desired username to add your offline account. <br>" +           "<br>" +           "It is required by Mojang that you own Minecraft BEFORE you may use offline mode. <br>" +           "The PolyMC organization denounces piracy and takes NO LIABILITY WHATSOEVER <br>" +           "for any illegal activity that may occur in usage of the offline mode feature. <br></b>" +           "<br>" +           "By continuing you promise that you own a Minecraft account.")      );      if (account) | 
