Skip to content

Commit

Permalink
Post-merge fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andybak committed Dec 22, 2024
1 parent 29f5ede commit f4430c0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Assets/Scripts/SketchControlsScript.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5107,9 +5107,8 @@ public bool IsCommandAvailable(GlobalCommands rEnum, int iParam = -1)
return m_WidgetManager.AnyActivePathHasAKnot();
case GlobalCommands.GoogleDriveSync:
return App.GoogleIdentity.LoggedIn;
case GlobalCommands.RecordCameraPath: return m_WidgetManager.CameraPathsVisible;
case GlobalCommands.EnableTexturePainting: return LastGrabWidget != null && TexturePainterManager.m_Instance.CanBeMadePaintable(LastGrabWidget);

case GlobalCommands.EnableTexturePainting:
return LastGrabWidget != null && TexturePainterManager.m_Instance.CanBeMadePaintable(LastGrabWidget);
case GlobalCommands.RecordCameraPath:
return m_WidgetManager.CameraPathsVisible;
case GlobalCommands.AdvancedPanelsToggle:
Expand Down

0 comments on commit f4430c0

Please sign in to comment.