Add Mac screen utilities, and removed an unneeded log.

This commit is contained in:
Menotdan
2023-05-17 23:57:23 -04:00
parent b6395cf6f1
commit 1d079842f6
2 changed files with 7 additions and 1 deletions

View File

@@ -223,7 +223,6 @@ namespace FlaxEditor.GUI.Dialogs
private void ColorPicked(Color32 colorPicked)
{
Editor.LogWarning("Ok???");
_activeEyedropper = false;
SelectedColor = colorPicked;
ScreenUtilities.PickColorDone -= ColorPicked;

View File

@@ -0,0 +1,7 @@
#if PLATFORM_MAC
#include <Cocoa/Cocoa.h>
#include <AppKit/AppKit.h>
#endif