State:New|TargetRelease:No Target|icon_bug|icon_nuke|database:public|Resolution:Fixed|BugID:559278|
Problem summary
PySide windows don't have the correct order applied, so always appear behind floating Nuke panes on macOS
Customer reported version
nuke.14.0v5
Customer reported platform
mac.12
Steps to reproduce
1) Open Nuke
2) Right click the Node Graph panel tab>Float tab and minimise the main Nuke window
3) In the Script Editor run the following:
from PySide2 import QtWidgetswindow = QtWidgets.QWidget()window.setWindowTitle("Test Window")window.show() 

from PySide2 import QtWidgetsfrom nukescripts import panelsdef testWindow(): window = QtWidgets.QWidget() window.setWindowTitle("Test Window") return windowpanels.registerWidgetAsPanel('testWindow', 'Test Window', 'testWindowWidget') We're sorry to hear that
Please tell us why