summaryrefslogtreecommitdiffstats
path: root/application
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2018-02-13 21:35:05 +0100
committerPetr Mrázek <peterix@gmail.com>2018-02-13 21:35:05 +0100
commit22b32fce126a0de8d002f67048792a89513f4e8a (patch)
tree1d1abe1a99ec0f31cc8c01702f6c29a3a62b3d91 /application
parent2c219df061e67305a4af96d543dc1c4f1e570719 (diff)
downloadMultiMC-22b32fce126a0de8d002f67048792a89513f4e8a.tar
MultiMC-22b32fce126a0de8d002f67048792a89513f4e8a.tar.gz
MultiMC-22b32fce126a0de8d002f67048792a89513f4e8a.tar.lz
MultiMC-22b32fce126a0de8d002f67048792a89513f4e8a.tar.xz
MultiMC-22b32fce126a0de8d002f67048792a89513f4e8a.zip
GH-2143 Switch Mojang status icons to current set of services
This also removes the Web and Account web icons, because they are simply not relevant to MultiMC (it does not use those). You can always check their status by opening them in a browser.
Diffstat (limited to 'application')
-rw-r--r--application/widgets/ServerStatus.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/application/widgets/ServerStatus.cpp b/application/widgets/ServerStatus.cpp
index 4602dde5..f1963b68 100644
--- a/application/widgets/ServerStatus.cpp
+++ b/application/widgets/ServerStatus.cpp
@@ -63,15 +63,13 @@ ServerStatus::ServerStatus(QWidget *parent, Qt::WindowFlags f) : QWidget(parent,
yellowIcon = MMC->getThemedIcon("status-yellow");
badIcon = MMC->getThemedIcon("status-bad");
- addStatus("minecraft.net", tr("Web"));
- addLine();
- addStatus("account.mojang.com", tr("Account"));
- addLine();
- addStatus("skins.minecraft.net", tr("Skins"));
- addLine();
addStatus("authserver.mojang.com", tr("Auth"));
addLine();
addStatus("sessionserver.mojang.com", tr("Session"));
+ addLine();
+ addStatus("textures.minecraft.net", tr("Skins"));
+ addLine();
+ addStatus("api.mojang.com", tr("API"));
m_statusRefresh = new QToolButton(this);
m_statusRefresh->setCheckable(true);