Skip to content

Commit

Permalink
v3.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pixtur committed Jul 1, 2024
1 parent 7ba358d commit 6953250
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Editor/Gui/Graph/GraphCanvas.cs
Original file line number Diff line number Diff line change
Expand Up @@ -224,8 +224,8 @@ public void Draw(ImDrawListPtr dl, GraphDrawingFlags drawingFlags, float graphOp
UpdateCanvas(editingFlags);

/*
* This is a work around to delay setting the composition until ImGui has
* finally updated its window size and applied its layout so we can use
* This is a workaround to delay setting the composition until ImGui has
* finally updated its window size and applied its layout, so we can use
* Graph window size to properly fit the content into view.
*
* The side effect of this hack is that CompositionOp stays undefined for
Expand Down Expand Up @@ -1225,7 +1225,7 @@ public IEnumerable<ISelectableCanvasObject> SelectableChildren
#region public API
/// <summary>
/// The canvas that is currently being drawn from the UI.
/// Note that <see cref="GraphCanvas"/> is NOT a singleton so you can't rely on this to be valid outside of the Drawing() context.
/// Note that <see cref="GraphCanvas"/> is NOT a singleton, so you can't rely on this to be valid outside the Drawing() context.
/// </summary>
public static GraphCanvas Current { get; private set; }

Expand Down
2 changes: 1 addition & 1 deletion Editor/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public static class Program
public static Device Device { get; private set; }

public static readonly bool IsStandAlone = File.Exists("StartT3.exe");
public const string Version = "3.9.1";
public const string Version = "3.9.2";

/// <summary>
/// Generate a release string with
Expand Down

0 comments on commit 6953250

Please sign in to comment.