diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 8bcc50b..a497318 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -39,20 +39,20 @@
- {
+ "keyToString": {
+ "Python.DockPanel.executor": "Debug",
+ "Python.Manager.executor": "Run",
+ "Python.SplitPanel.executor": "Run",
+ "Python.Widget.executor": "Run",
+ "Python.test.executor": "Run",
+ "RunOnceActivity.OpenProjectViewOnStart": "true",
+ "RunOnceActivity.ShowReadmeOnStart": "true",
+ "SHARE_PROJECT_CONFIGURATION_FILES": "true",
+ "git-widget-placeholder": "main",
+ "settings.editor.selected.configurable": "preferences.sourceCode"
}
-}]]>
+}
diff --git a/DockPanel.py b/DockPanel.py
index 15bf97d..c780d98 100644
--- a/DockPanel.py
+++ b/DockPanel.py
@@ -115,9 +115,6 @@ class DockPanel(QWidget):
def sync_status(self):
self.drag_header.setVisible(self.default_header)
- def paintEvent(self, a0):
- super(DockPanel, self).paintEvent(a0)
- print(self.windowTitle() + "::" + str(self.isVisible()))
if __name__ == "__main__":
app=QApplication([])
diff --git a/Manager.py b/Manager.py
index 33f698d..4d102d8 100644
--- a/Manager.py
+++ b/Manager.py
@@ -101,7 +101,6 @@ class AcceptPanel(QWidget):
self.setVisible(False)
-
class DragManager(QObject):
__unique_inst: 'DragManager' = None
diff --git a/SplitPanel.py b/SplitPanel.py
index 66fa45d..69b65db 100644
--- a/SplitPanel.py
+++ b/SplitPanel.py
@@ -87,10 +87,6 @@ class SplitPanel(QWidget):
self.split_member[1].setVisible(True)
pass
- def paintEvent(self, a0):
- super(SplitPanel, self).paintEvent(a0)
- print(self.split_member[0].windowTitle() + "\\" + self.split_member[1].windowTitle())
-
def child(self):
return self.split_member[0], self.split_member[1], self.split_info[0]