From 185114594164b631dc3db20efdfde2971f96a7ec Mon Sep 17 00:00:00 2001 From: Raphael <68374617+raphaelscholle@users.noreply.github.com> Date: Sun, 10 Nov 2024 17:48:16 +0100 Subject: [PATCH] Update PopupTxPowerEditor.qml --- qml/ui/configpopup/openhd_settings/PopupTxPowerEditor.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qml/ui/configpopup/openhd_settings/PopupTxPowerEditor.qml b/qml/ui/configpopup/openhd_settings/PopupTxPowerEditor.qml index 53561dead..ec2a53af9 100644 --- a/qml/ui/configpopup/openhd_settings/PopupTxPowerEditor.qml +++ b/qml/ui/configpopup/openhd_settings/PopupTxPowerEditor.qml @@ -39,7 +39,7 @@ PopupBigGeneric{ _qopenhd.show_toast("WARNING: Changing TX power while armed is not recommended !"); } var card_chipset_type=get_chipset_type(); - if(!(card_chipset_type==0 || card_chipset_type==1)){ + if(!(card_chipset_type==0 || card_chipset_type==1 || card_chipset_type==3)){ _messageBoxInstance.set_text_and_show("Changing tx power is only possible on openhd supported cards."); return; }