1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 13:22:55 +08:00

Merge pull request #28116 from bdach/integration-settings-only-on-desktop

Do not show integration settings on mobile
This commit is contained in:
Dan Balasescu 2024-05-06 19:20:32 +09:00 committed by GitHub
commit 4c2ac479b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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());
}
}
}