Skip to content

Commit

Permalink
fix regression bug
Browse files Browse the repository at this point in the history
  • Loading branch information
aress31 committed Dec 26, 2023
1 parent 634ea8c commit dee70a3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/swurg/gui/views/ParserPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,10 @@ private Icon resizeIcon(Icon originalIcon, int iconWidth) {
@Override
public void onMyHttpRequestsUpdate(int event, List<MyHttpRequest> myHttpRequests) {
if (event == TableModelEvent.DELETE) {
this.metadataLabel.setToolTipText(this.TOOLTIP_TEXT);
this.requestViewer.setRequest(null);

if (myHttpRequests.isEmpty())
this.metadataLabel.setToolTipText(this.TOOLTIP_TEXT);
}
}

Expand Down

0 comments on commit dee70a3

Please sign in to comment.