Skip to content

Commit 1ac2289

Browse files
version 0.5 & added support for clicking and opening the project
1 parent a2cbdf1 commit 1ac2289

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

UnityHubNative.Net/Manifest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ namespace UnityHubNative.Net;
22

33
static class Manifest
44
{
5-
public const string Version = "v0.4";
5+
public const string Version = "v0.5";
66
}

UnityHubNative.Net/SubmitableListBox.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ class SubmitableListBox : ListBox
2323

2424
protected override Type StyleKeyOverride => typeof(ListBox);
2525

26+
protected override void OnPointerReleased(PointerReleasedEventArgs e)
27+
{
28+
base.OnPointerReleased(e);
29+
OnSubmit?.Invoke();
30+
}
31+
2632
protected override void OnKeyDown(KeyEventArgs e)
2733
{
2834
if (!e.Handled && submitGestures.Any(g => g.Matches(e)))

0 commit comments

Comments
 (0)