aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Long <willcode4@gmail.com>2021-09-10 09:03:06 -0400
committerJeff Long <willcode4@gmail.com>2021-10-10 07:50:35 -0400
commit5ed2023afe42f09d8a8a281906f6d7028b0eb851 (patch)
tree8bb6b828e2194d50e4d8aba49ba559b17f0cee69
parentRelease 3.8.4.0 (diff)
downloadgnuradio-5ed2023afe42f09d8a8a281906f6d7028b0eb851.tar.xz
gnuradio-5ed2023afe42f09d8a8a281906f6d7028b0eb851.zip
qtgui: remove int type from number_sink block yaml
Number Sink takes a size, rather than a type, and does not support int32. It assumes items of size 4 are floats. Signed-off-by: Jeff Long <willcode4@gmail.com> (cherry picked from commit 99c1fc80d53d0d5bbc3d3466e1aee0250cb1a256) Signed-off-by: Jeff Long <willcode4@gmail.com>
-rw-r--r--gr-qtgui/grc/qtgui_number_sink.block.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-qtgui/grc/qtgui_number_sink.block.yml b/gr-qtgui/grc/qtgui_number_sink.block.yml
index 24c554dce..16d124537 100644
--- a/gr-qtgui/grc/qtgui_number_sink.block.yml
+++ b/gr-qtgui/grc/qtgui_number_sink.block.yml
@@ -12,9 +12,9 @@ parameters:
label: Input Type
category: General
dtype: enum
- options: [float, int, short, byte]
+ options: [float, short, byte]
option_attributes:
- size: [gr.sizeof_float, gr.sizeof_int, gr.sizeof_short, gr.sizeof_char]
+ size: [gr.sizeof_float, gr.sizeof_short, gr.sizeof_char]
hide: part
- id: autoscale
label: Autoscale