mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 10:33:30 +08:00
Fix CI issues
This commit is contained in:
parent
41e13aef23
commit
487a56549e
@ -70,7 +70,8 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Pieces
|
||||
public float BorderSize
|
||||
{
|
||||
get => path.BorderSize;
|
||||
set {
|
||||
set
|
||||
{
|
||||
if (path.BorderSize == value)
|
||||
return;
|
||||
|
||||
@ -154,7 +155,8 @@ namespace osu.Game.Rulesets.Osu.Objects.Drawables.Pieces
|
||||
public float BorderSize
|
||||
{
|
||||
get => borderSize;
|
||||
set {
|
||||
set
|
||||
{
|
||||
if (borderSize == value)
|
||||
return;
|
||||
|
||||
|
@ -1,9 +1,7 @@
|
||||
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
||||
// 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.Game.Beatmaps.Formats;
|
||||
using System;
|
||||
using System.Globalization;
|
||||
|
||||
namespace osu.Game.Skinning
|
||||
{
|
||||
@ -36,6 +34,7 @@ namespace osu.Game.Skinning
|
||||
case @"CursorExpand":
|
||||
skin.CursorExpand = pair.Value != "0";
|
||||
break;
|
||||
|
||||
case @"SliderBorderSize":
|
||||
skin.SliderBorderSize = Parsing.ParseFloat(pair.Value);
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user