Open mskar opened 1 year ago
Miro does not work when a window is fullscreen (press control command F or click green button in top left to enter fullscreen).
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
Miro does not work when a window is fullscreen (press control command F or click green button in top left to enter fullscreen).
My solution is to exit fullscreen before every action that Miro takes: