mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-17 10:17:41 +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) {
|
||||
if (text == null ) {
|
||||
text = "";
|
||||
}
|
||||
extractedTextPane.setText(text);
|
||||
extractedTextPane.setCaretPosition(0);
|
||||
}
|
||||
@ -593,7 +596,7 @@ class ExtractedContentPanel extends javax.swing.JPanel {
|
||||
|
||||
@Override
|
||||
protected void done() {
|
||||
super.done();
|
||||
//super.done();
|
||||
progress.finish();
|
||||
if (markup != null) {
|
||||
setPanelText(markup);
|
||||
|
Loading…
x
Reference in New Issue
Block a user