-
Notifications
You must be signed in to change notification settings - Fork 25
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
Blender's Toggle Full Screen operator doesn't trigger full screen. #3
Comments
note: fullscreen only doesn't toggle correctly in the first window! so we cant just intercept the event, but have to ensure it comes from window[0] |
clicking it in the menu uses the operator bpy.ops.wm.window_fullscreen_toggle We could unregister this operator and register our own operator with same name, but we need to also handle non wrapped windows. (e.g. if you have 2 blender main windows open, 1 will be wrapped in qt, the other one wont be) |
workaround: disable qt wrapping with |
Blender's Windows\Toggle Full Screen menu command doesn't trigger the QWidget to go to full screen.
The text was updated successfully, but these errors were encountered: