mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
ColorGradient - Fixed GetColor returning the first stop if position was after the last stop
19 lines
441 B
C#
19 lines
441 B
C#
using Avalonia.Input;
|
|
using Avalonia.Markup.Xaml;
|
|
using Avalonia.ReactiveUI;
|
|
|
|
namespace Artemis.UI.Screens.Settings.Updating;
|
|
|
|
public partial class ReleaseDetailsView : ReactiveUserControl<ReleaseDetailsViewModel>
|
|
{
|
|
public ReleaseDetailsView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
|
|
private void InputElement_OnPointerReleased(object? sender, PointerReleasedEventArgs e)
|
|
{
|
|
ViewModel?.NavigateToSource();
|
|
}
|
|
} |