fix: screen.getCursorScreenPoint() crash on Wayland (#35503)

fix: screen.getCursorScreenPoint() crash on Wayland
This commit is contained in:
Shelley Vohr 2022-09-05 10:10:50 +02:00 committed by GitHub
parent 98c0fa1c8b
commit 2db0f7f8d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 2 deletions

View file

@ -40,7 +40,7 @@ class Screen : public gin::Wrappable<Screen>,
Screen(v8::Isolate* isolate, display::Screen* screen);
~Screen() override;
gfx::Point GetCursorScreenPoint();
gfx::Point GetCursorScreenPoint(v8::Isolate* isolate);
display::Display GetPrimaryDisplay();
std::vector<display::Display> GetAllDisplays();
display::Display GetDisplayNearestPoint(const gfx::Point& point);