Split mac cursor visibility

This commit is contained in:
2026-06-13 19:30:02 +02:00
parent 936081680f
commit fc4f5e401d
5 changed files with 51 additions and 5 deletions

View File

@@ -160,4 +160,13 @@ void AppleDocumentPlatformServices::share_file(std::string_view path) const
#endif
}
void AppleDocumentPlatformServices::set_cursor_visible(bool visible) const
{
#if defined(__OSX__)
[App::I->osx_view show_cursor:visible];
#else
(void)visible;
#endif
}
}