I create simple flow graph in gnuradio as below:
The expected output order is:
- 1.qt gui sink
- 2.frequency sink
- 3.time sink
But time sink appear first,then gui sink:
How to change the display order of qt gui sink in gnuradio?
All QT GUI elements support a GUI hint which dictates how they are laid out in a grid.
All of the QT GUI widgets and plots have a parameter called GUI Hint. This is used to arrange GUIs in the window, as well as assign them to tabs in a QT GUI Tab Widget.
The format is:
(row, column, row span, column span)
For example,
order you create the elements
.Also, I didn't find place to setatrribute
. – kittygirl Sep 02 '21 at 23:19