File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -370,6 +370,8 @@ InspectorUI::setSampleRate(float rate)
370370
371371 for (auto p : this ->controls )
372372 p->setSampleRate (rate);
373+
374+ onInspectorControlChanged ();
373375}
374376
375377void
@@ -1188,7 +1190,9 @@ InspectorUI::getBaudRateFloat(void) const
11881190 // Check baudrate
11891191 if ((val = this ->config ->get (" clock.baud" )) != nullptr )
11901192 baud = val->getFloat ();
1191-
1193+ else
1194+ baud = sampleRate;
1195+
11921196 return baud;
11931197}
11941198
Original file line number Diff line number Diff line change @@ -272,7 +272,7 @@ InspectionWidgetFactory::registerGlobally()
272272bool
273273InspectionWidgetFactory::worksWith (QString inspClass) const
274274{
275- return inspClass != " raw " && inspClass != " power" ;
275+ return inspClass != " power" ;
276276}
277277
278278bool
You can’t perform that action at this time.
0 commit comments