We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2cbdf1 commit 1ac2289Copy full SHA for 1ac2289
UnityHubNative.Net/Manifest.cs
@@ -2,5 +2,5 @@ namespace UnityHubNative.Net;
2
3
static class Manifest
4
{
5
- public const string Version = "v0.4";
+ public const string Version = "v0.5";
6
}
UnityHubNative.Net/SubmitableListBox.cs
@@ -23,6 +23,12 @@ class SubmitableListBox : ListBox
23
24
protected override Type StyleKeyOverride => typeof(ListBox);
25
26
+ protected override void OnPointerReleased(PointerReleasedEventArgs e)
27
+ {
28
+ base.OnPointerReleased(e);
29
+ OnSubmit?.Invoke();
30
+ }
31
+
32
protected override void OnKeyDown(KeyEventArgs e)
33
34
if (!e.Handled && submitGestures.Any(g => g.Matches(e)))
0 commit comments