Merge branch 'master' into move-tooltip-text

This commit is contained in:
Dan Balasescu 2019-05-21 14:25:38 +09:00 committed by GitHub
commit de08bab0a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,4 @@
// 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 System;
@ -588,7 +588,7 @@ private void forwardLoggedErrorsToNotifications()
private Task asyncLoadStream;
private void loadComponentSingleFile<T>(T d, Action<T> add, bool cache = false)
private T loadComponentSingleFile<T>(T d, Action<T> add, bool cache = false)
where T : Drawable
{
if (cache)
@ -636,6 +636,8 @@ private void loadComponentSingleFile<T>(T d, Action<T> add, bool cache = false)
}
});
});
return d;
}
public bool OnPressed(GlobalAction action)