-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Description
Problem
Currently, when clicking the "Fullscreen" button, the video editor does not toggle to fullscreen mode as expected. The button appears unresponsive, and no error message or feedback is provided to the user, leading to a poor user experience and inability to use the fullscreen feature.
Solution
Implement a fix for the fullscreen button by ensuring it correctly triggers the browser's fullscreen API (e.g., requestFullscreen()). Add error handling to display a user-friendly message if fullscreen mode fails (e.g., due to browser restrictions). Additionally, update the button's state to visually indicate whether the editor is in fullscreen mode (e.g., toggle icon or label).
Alternative
Instead of relying solely on the button, introduce a keyboard shortcut (e.g., F11 or Ctrl+Shift+F) to toggle fullscreen mode. This would provide an alternative way to access the feature but may not fully address the broken button issue.
Anything else?
No response