diff --git a/covert/gui/app.py b/covert/gui/app.py index 2aee1fb..dd20dd5 100644 --- a/covert/gui/app.py +++ b/covert/gui/app.py @@ -215,16 +215,16 @@ def decrypt_attempt(self): f.seek(0) data = f.read() try: - self.plaintext.appendPlainText(f" 💬\n{data.decode()}") + self.plaintext.appendPlainText(f"{data.decode()}\n") except UnicodeDecodeError: pidx = a.flist.index(prev) prev.name = f"noname.{pidx + 1:03}" prev.renamed = True f.close() f = None - if prev and prev.name is not None: - r = '' if prev.renamed else '' - self.plaintext.appendPlainText(f'{prev.size:15,d} 📄 {prev.name:60}{r}'.rstrip()) + #if prev and prev.name is not None: + #r = '' if prev.renamed else '' + #self.plaintext.appendPlainText(f'{prev.size:15,d} 📄 {prev.name:60}{r}'.rstrip()) if a.curfile: # Is it a displayable message? if a.curfile.name is None and a.curfile.size is not None and a.curfile.size < TTY_MAX_SIZE: