Adding a QX11EmbedContainer widget to a MainWindow
-
Hi,
It's normal, QMainWindow are not designed to have their layout changed (you should even get a warning on the console about that)
If you want to have several widget with each other on the QMainWindow, you can create a container widget where you set the layout and all the widgets you want, then set that container widget as central widget on your QMainWindow.
Hope it helps
-
Did you try with QX11EmbedWidget ?