Blackboard not showing up on retina Mac + fix

Forums 💬 NodeCanvas ⚙️ Support Blackboard not showing up on retina Mac + fix

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #18410
    jakko
    Participant

      Hi,

      The blackboard doesn’t show up on my retina system.
      Changing the following in EDITOR_Graph.cs fixes this::

      Line 450 (Screen.width reports back double the width you expect for editor GUI positions)
      blackboardRect.x = Screen.Width - 350;
      Change to
      blackboardRect.x = EditorGUIUtility.currentViewWidth - 350;

      You might want to check more uses of Screen.width/height throughout the code to accommodate retina screens correctly.

      Best,
      Jakko van Hunen

      #18412
      Gavalakis
      Keymaster

        Thank you very much for the fix! Appreciated.
        I will add this in the next release and will also of course check for more similar occurrences.

        Cheers!

        #18411
        robautomatic
        Participant

          Ahhh this helped me; thanks for the fix! I thought I was going crazy not seeing my blackboard on my graphs on my Macbook Pro in contrast with when I’m working on my main machine.

        Viewing 3 posts - 1 through 3 (of 3 total)
        • You must be logged in to reply to this topic.