]> sigrok.org Git - pulseview.git/commitdiff
DecodeSignal: Don't set name when creating the signal
authorSoeren Apel <redacted>
Mon, 10 Jul 2017 17:14:35 +0000 (19:14 +0200)
committerSoeren Apel <redacted>
Mon, 10 Jul 2017 17:14:35 +0000 (19:14 +0200)
The thought behind this was to have no unnamed signals because
this may make debugging harder. However, giving the signal a
long name and shortening it when decoders are added isn't working
well. The reason is that the width of the header area can be
expanded programmatically but we don't shrink it because we
don't want to hide things the user may want to see.
This behavior in turn leads to the header width expanding when
a signal labeled "Empty decoder signal" is added, only to see
this very signal be renamed to e.g. "SPI" immediately afterwards.
As we don't shrink the header width, the header is now too wide.

pv/data/decodesignal.cpp

index 8cbf230d1e8f0cddae1f5c28fdfaea54a92039c4..daa52ed62d67231821f4fee2647fd506853d96a7 100644 (file)
@@ -62,8 +62,6 @@ DecodeSignal::DecodeSignal(pv::Session &session) :
 {
        connect(&session_, SIGNAL(capture_state_changed(int)),
                this, SLOT(on_capture_state_changed(int)));
-
-       set_name(tr("Empty decoder signal"));
 }
 
 DecodeSignal::~DecodeSignal()