diff options
author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2020-06-25 23:35:19 +0200 |
---|---|---|
committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2020-06-25 23:37:53 +0200 |
commit | e8d632720f87640daa662e74a7906f984de5d8da (patch) | |
tree | 2e63fb7d1df938633aee267816ccde764b410181 /modules/mono/editor/GodotTools | |
parent | 23f7f86914da0ee1423d49db7e549a5f50fb3cdc (diff) |
Mono/C#: Fix InvalidCast because of attempt to unbox long as int
Diffstat (limited to 'modules/mono/editor/GodotTools')
-rw-r--r-- | modules/mono/editor/GodotTools/GodotTools/BuildTab.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/GodotTools/GodotTools/BuildTab.cs b/modules/mono/editor/GodotTools/GodotTools/BuildTab.cs index 0106e1f1ac..8596cd24af 100644 --- a/modules/mono/editor/GodotTools/GodotTools/BuildTab.cs +++ b/modules/mono/editor/GodotTools/GodotTools/BuildTab.cs @@ -113,7 +113,7 @@ namespace GodotTools throw new IndexOutOfRangeException("Item list index out of range"); // Get correct issue idx from issue list - int issueIndex = (int)issuesList.GetItemMetadata(idx); + int issueIndex = (int)(long)issuesList.GetItemMetadata(idx); if (issueIndex < 0 || issueIndex >= issues.Count) throw new IndexOutOfRangeException("Issue index out of range"); |