No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

RiderStyles.cs 522B

1234567891011121314151617181920212223
  1. using UnityEditor;
  2. using UnityEngine;
  3. namespace Packages.Rider.Editor
  4. {
  5. internal static class RiderStyles
  6. {
  7. static RiderStyles()
  8. {
  9. LinkLabelStyle = new GUIStyle(EditorStyles.linkLabel)
  10. {
  11. padding = GUI.skin.label.padding,
  12. margin = GUI.skin.label.margin
  13. };
  14. LinkLabelStyle.padding.left = 0;
  15. LinkLabelStyle.padding.right = 0;
  16. LinkLabelStyle.margin.left = 0;
  17. LinkLabelStyle.margin.right = 0;
  18. }
  19. public static readonly GUIStyle LinkLabelStyle;
  20. }
  21. }