fix(explorer): ensure parent is forwarded correctly

This commit is contained in:
2025-09-16 12:58:17 +02:00
committed by wyzula_j
co-authored by wyzula_j
parent 59bfc5826f
commit 275581a0fe
@@ -18,8 +18,8 @@ class Explorer(BECWidget, QWidget):
RPC = False
PLUGIN = False
def __init__(self, parent=None):
super().__init__(parent)
def __init__(self, parent=None, **kwargs):
super().__init__(parent=parent, **kwargs)
# Main layout
self.main_layout = QVBoxLayout(self)