Skip to content

Commit

Permalink
Fix crash on editing transmit text
Browse files Browse the repository at this point in the history
Possibly #180
  • Loading branch information
docsteer committed Feb 13, 2019
1 parent 545edcf commit ab641e8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/transmitwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,8 @@ void transmitwindow::radioFadeMode_toggled(int id, bool checked)

void transmitwindow::on_leScrollText_textChanged(const QString & text)
{
m_fxEngine->setText(text);
if(m_fxEngine)
m_fxEngine->setText(text);
}


Expand Down

0 comments on commit ab641e8

Please sign in to comment.