Hello.
Wanted to say that the shortcut SHIFT + SPACE , which toggles the maximizing of any unity-window, does not work with nodecanvas. It allows to maximize, but the when returning to normal ( after executing the shortcut again ), the graph-window stops working, must be closed and opened again from the menu.
I guess this should not behave like that.
Maximizing is s quite handy feature for quickly enlargening workspace. Especially when one has to work with only 1 screen.
This has already been hotfixed. It is actually an easy change. Please open up GraphEditor.cs and add these lines of code on the top of the “targetOwner” property.
1
2
3
4
5
6
7
8
9
privatestaticGraphOwnertargetOwner{
get
{
if(current==null){//this fix the maximize/minimize window
current=OpenWindow();
}
///Rest of code bellow
Let me know if that indeed works for you.
Thank you!