@@ -918,25 +918,27 @@ class FT8DecoderModule : public ModuleManager::Instance, public FT8ModuleInterfa
918918 ImGui::Text (" Error: %s" , _this->ft4decoder .decodeError );
919919 ImGui::PopStyleColor ();
920920 }
921- //
922- // PSK Reporter
923- //
924- ImGui::LeftLabel (" PSKReporter" );
925- ImGui::BeginDisabled ();
926- if (ImGui::Checkbox (CONCAT (" ##_enable_psk_reporter_" , _this->name ), &_this->enablePSKReporter )) {
927- config.acquire ();
928- config.conf [_this->name ][" enablePSKReporter" ] = _this->enablePSKReporter ;
929- config.release (true );
930- }
931- ImGui::EndDisabled ();
932- ImGui::SameLine ();
933- ImGui::Text (" using callsign:" );
934- ImGui::SameLine ();
935- ImGui::FillWidth ();
936- if (sigpath::iqFrontEnd.operatorCallsign == " " ) {
937- ImGui::Text (" [set up in source menu]" );
938- } else {
939- ImGui::Text (" %s" , sigpath::iqFrontEnd.operatorCallsign .c_str ());
921+ if (false ) {
922+ //
923+ // PSK Reporter not completed yet
924+ //
925+ ImGui::LeftLabel (" PSKReporter" );
926+ ImGui::BeginDisabled ();
927+ if (ImGui::Checkbox (CONCAT (" ##_enable_psk_reporter_" , _this->name ), &_this->enablePSKReporter )) {
928+ config.acquire ();
929+ config.conf [_this->name ][" enablePSKReporter" ] = _this->enablePSKReporter ;
930+ config.release (true );
931+ }
932+ ImGui::EndDisabled ();
933+ ImGui::SameLine ();
934+ ImGui::Text (" using callsign:" );
935+ ImGui::SameLine ();
936+ ImGui::FillWidth ();
937+ if (sigpath::iqFrontEnd.operatorCallsign == " " ) {
938+ ImGui::Text (" [set up in source menu]" );
939+ } else {
940+ ImGui::Text (" %s" , sigpath::iqFrontEnd.operatorCallsign .c_str ());
941+ }
940942 }
941943 ImGui::LeftLabel (" ALL.TXT log" );
942944 if (ImGui::Checkbox (CONCAT (" ##_enable_alltxt_" , _this->name ), &_this->enableAllTXT )) {
0 commit comments