Skip to content

Commit

Permalink
Merge PortSwigger updates
Browse files Browse the repository at this point in the history
  • Loading branch information
CoreyD97 committed Feb 11, 2022
2 parents f043c2b + dbff460 commit 99f6ac7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BappManifest.bmf
Expand Up @@ -2,8 +2,8 @@ Uuid: 470b7057b86f41c396a97903377f3d81
ExtensionType: 1
Name: Logger++
RepoName: logger-plus-plus
ScreenVersion: 3.19.3
SerialVersion: 19
ScreenVersion: 3.19.3a
SerialVersion: 20
MinPlatformVersion: 0
ProOnly: False
Author: Soroush Dalili & Corey Arthur, NCC Group
Expand Down
4 changes: 4 additions & 0 deletions src/main/java/com/nccgroup/loggerplusplus/help/HelpPanel.java
Expand Up @@ -54,6 +54,7 @@ private void setup() {


JTextPane overviewTitle = new JTextPane();
overviewTitle.putClientProperty("html.disable", null);
overviewTitle.setContentType("text/html");
overviewTitle.setDocument(doc);
overviewTitle.setEditable(false);
Expand All @@ -64,6 +65,7 @@ private void setup() {
"filters from various fields and row coloring to highlight interesting entries which match a specific filter.</body>");

JTextPane overviewPane = new JTextPane();
overviewPane.putClientProperty("html.disable", null);
overviewPane.setContentType("text/html");
overviewPane.setEditable(false);
doc = (HTMLDocument) editorKit.createDefaultDocument();
Expand Down Expand Up @@ -154,6 +156,7 @@ private void setup() {
});

JTextPane fieldTitle = new JTextPane();
fieldTitle.putClientProperty("html.disable", null);
fieldTitle.setContentType("text/html");
fieldTitle.setEditable(false);
doc = (HTMLDocument) editorKit.createDefaultDocument();
Expand All @@ -163,6 +166,7 @@ private void setup() {
"A number of fields are available to use from the requests within your filters. These are listed below.<body>");

JTextPane fieldPane = new JTextPane();
fieldPane.putClientProperty("html.disable", null);
fieldPane.setContentType("text/html");
fieldPane.setEditable(false);
doc = (HTMLDocument) editorKit.createDefaultDocument();
Expand Down

0 comments on commit 99f6ac7

Please sign in to comment.