Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fullscreen blocks miro #28

Open
mskar opened this issue Nov 10, 2022 · 1 comment
Open

Fullscreen blocks miro #28

mskar opened this issue Nov 10, 2022 · 1 comment

Comments

@mskar
Copy link

mskar commented Nov 10, 2022

Miro does not work when a window is fullscreen (press control command F or click green button in top left to enter fullscreen).
image
My solution is to exit fullscreen before every action that Miro takes:

function obj:_exitFullScreen(win)
  local win = win or hs.window.focusedWindow()
  if win:isFullScreen() then
    win:setFullScreen(false)
  end
end

I submitted a pull request (#27) that seems to work well. I am using this version of the code in my personal setup and very happy with how it works.

@rlhk
Copy link

rlhk commented Nov 11, 2022

Cool. I need this since long ago.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants