1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:47:27 +08:00

Do not show integration settings on mobile

Closes https://github.com/ppy/osu/issues/28097.

The settings weren't actually doing anything at all there anyway.
This commit is contained in:
Bartłomiej Dach 2024-05-06 11:22:56 +02:00
parent 761d713593
commit cf87e9cd40
No known key found for this signature in database

View File

@ -1,6 +1,7 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using osu.Framework;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Localisation;
@ -25,8 +26,10 @@ namespace osu.Game.Overlays.Settings.Sections
{
new WebSettings(),
new AlertsAndPrivacySettings(),
new IntegrationSettings()
};
if (RuntimeInfo.IsDesktop)
Add(new IntegrationSettings());
}
}
}