You've already forked com.unity.ide.cursor
mirror of
https://github.com/boxqkrtm/com.unity.ide.cursor.git
synced 2026-05-15 06:40:08 +00:00
Compare commits
3 Commits
v2.0.28
...
copilot/fi
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8e1da25983 | ||
|
|
412c992de2 | ||
|
|
d8164f72bb |
@@ -584,7 +584,12 @@ namespace Microsoft.Unity.VisualStudio.Editor
|
||||
var application = Path;
|
||||
|
||||
var workspace = TryFindWorkspace(directory);
|
||||
// Use version-compatible null-coalescing for Unity 2019.4 (C# 7.3) support
|
||||
#if UNITY_2020_2_OR_NEWER
|
||||
workspace ??= directory;
|
||||
#else
|
||||
workspace = workspace ?? directory;
|
||||
#endif
|
||||
directory = workspace;
|
||||
|
||||
if (EditorPrefs.GetBool(ReuseExistingWindowKey, false))
|
||||
|
||||
Reference in New Issue
Block a user