mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-19 11:07:43 +00:00
do not call super.done() after got extracted text
This commit is contained in:
parent
b534672b27
commit
b4e0d1eef3
@ -353,6 +353,9 @@ class ExtractedContentPanel extends javax.swing.JPanel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void setPanelText(String text) {
|
private void setPanelText(String text) {
|
||||||
|
if (text == null ) {
|
||||||
|
text = "";
|
||||||
|
}
|
||||||
extractedTextPane.setText(text);
|
extractedTextPane.setText(text);
|
||||||
extractedTextPane.setCaretPosition(0);
|
extractedTextPane.setCaretPosition(0);
|
||||||
}
|
}
|
||||||
@ -593,7 +596,7 @@ class ExtractedContentPanel extends javax.swing.JPanel {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void done() {
|
protected void done() {
|
||||||
super.done();
|
//super.done();
|
||||||
progress.finish();
|
progress.finish();
|
||||||
if (markup != null) {
|
if (markup != null) {
|
||||||
setPanelText(markup);
|
setPanelText(markup);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user