Skip to content

Commit 77d20c6

Browse files
author
isayan
committed
bugfix QuickSearch and Other
1 parent b77a4d3 commit 77d20c6

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

release/YaguraExtender.jar

-576 Bytes
Binary file not shown.

src/burp/BurpExtender.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public static BurpExtender getInstance() {
110110
@Override
111111
public IMessageEditorTab createNewInstance(IMessageEditorController controller, boolean editable) {
112112
final RawViewTab tab = new RawViewTab(controller, editable, true);
113-
getCallbacks().customizeUiComponent(tab.getUiComponent());
113+
// getCallbacks().customizeUiComponent(tab.getUiComponent());
114114
return tab;
115115
}
116116
};
@@ -119,7 +119,7 @@ public IMessageEditorTab createNewInstance(IMessageEditorController controller,
119119
@Override
120120
public IMessageEditorTab createNewInstance(IMessageEditorController controller, boolean editable) {
121121
final RawViewTab tab = new RawViewTab(controller, editable, false);
122-
getCallbacks().customizeUiComponent(tab.getUiComponent());
122+
// getCallbacks().customizeUiComponent(tab.getUiComponent());
123123
return tab;
124124
}
125125
};
@@ -128,7 +128,7 @@ public IMessageEditorTab createNewInstance(IMessageEditorController controller,
128128
@Override
129129
public IMessageEditorTab createNewInstance(IMessageEditorController controller, boolean editable) {
130130
final ParamsViewTab tab = new ParamsViewTab(controller, editable);
131-
getCallbacks().customizeUiComponent(tab.getUiComponent());
131+
// getCallbacks().customizeUiComponent(tab.getUiComponent());
132132
return tab;
133133
}
134134
};
@@ -137,7 +137,7 @@ public IMessageEditorTab createNewInstance(IMessageEditorController controller,
137137
@Override
138138
public IMessageEditorTab createNewInstance(IMessageEditorController controller, boolean editable) {
139139
final JSONViewTab tab = new JSONViewTab(controller, editable, true);
140-
getCallbacks().customizeUiComponent(tab.getUiComponent());
140+
// getCallbacks().customizeUiComponent(tab.getUiComponent());
141141
return tab;
142142
}
143143
};
@@ -146,7 +146,7 @@ public IMessageEditorTab createNewInstance(IMessageEditorController controller,
146146
@Override
147147
public IMessageEditorTab createNewInstance(IMessageEditorController controller, boolean editable) {
148148
final JSONViewTab tab = new JSONViewTab(controller, editable, false);
149-
getCallbacks().customizeUiComponent(tab.getUiComponent());
149+
// getCallbacks().customizeUiComponent(tab.getUiComponent());
150150
return tab;
151151
}
152152
};

src/burp/release.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# YaguraExtender build xml properties
22

33
# version
4-
version=1.7.34.1
4+
version=1.7.34.2
55

66
#lib
77
asciidoctor-version=1.5.6

src/yagura/view/RawViewTab.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ public RawViewTab(IMessageEditorController controller, boolean editable, boolean
4949
this.request = isResuest;
5050
this.controller = controller;
5151
this.editable = editable;
52+
this.editable = false;
5253
initComponents();
5354
customizeComponents();
5455
}

0 commit comments

Comments
 (0)