summaryrefslogtreecommitdiff
path: root/onionshare_gui
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2018-10-07 21:46:16 -0700
committerMicah Lee <micah@micahflee.com>2018-10-07 21:46:16 -0700
commitbc8759bc77864fceeab22e0d4038ce0750c3cc07 (patch)
treef0ea2ed699d0af68131588ea7f3cc10827d606f5 /onionshare_gui
parent656784dfa94627121c8b75c588f555a61a223ae3 (diff)
downloadonionshare-bc8759bc77864fceeab22e0d4038ce0750c3cc07.tar.gz
onionshare-bc8759bc77864fceeab22e0d4038ce0750c3cc07.zip
Properly close items inside the item list, instead of just hiding them
Diffstat (limited to 'onionshare_gui')
-rw-r--r--onionshare_gui/mode/history.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/onionshare_gui/mode/history.py b/onionshare_gui/mode/history.py
index 4f5b2cef..ff31e3a9 100644
--- a/onionshare_gui/mode/history.py
+++ b/onionshare_gui/mode/history.py
@@ -347,7 +347,7 @@ class HistoryItemList(QtWidgets.QScrollArea):
"""
for item in self.items.values():
self.items_layout.removeWidget(item)
- item.hide()
+ item.close()
self.items = {}