mirror of
https://github.com/onionshare/onionshare.git
synced 2025-05-15 04:42:18 -04:00
Properly close items inside the item list, instead of just hiding them
This commit is contained in:
parent
1cdbe4538c
commit
bf56548e7e
1 changed files with 1 additions and 1 deletions
|
@ -347,7 +347,7 @@ class HistoryItemList(QtWidgets.QScrollArea):
|
||||||
"""
|
"""
|
||||||
for item in self.items.values():
|
for item in self.items.values():
|
||||||
self.items_layout.removeWidget(item)
|
self.items_layout.removeWidget(item)
|
||||||
item.hide()
|
item.close()
|
||||||
self.items = {}
|
self.items = {}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue