Skip to content

Commit

Permalink
bug fix of UI not updating for HTTP methods
Browse files Browse the repository at this point in the history
  • Loading branch information
dannagle committed Oct 7, 2023
1 parent 7f155fc commit 03955dc
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2778,3 +2778,9 @@ bool PreviewFilter::eventFilter(QObject *watched, QEvent *event)

return QObject::eventFilter(watched, event);
}

void MainWindow::on_udptcpComboBox_currentIndexChanged(int index)
{
on_udptcpComboBox_currentIndexChanged("");
}

4 changes: 3 additions & 1 deletion src/mainwindow.h
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,9 @@ class MainWindow : public QMainWindow

void on_testPacketButton_pressed();

private:
void on_udptcpComboBox_currentIndexChanged(int index);

private:
Ui::MainWindow *ui;
QSortFilterProxyModel *proxyModel;
PacketLogModel packetsLogged;
Expand Down

0 comments on commit 03955dc

Please sign in to comment.