From 108d307ccdcbaa00472d294ffcefb476a9bed4b6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E7=8E=89=E5=AE=87=E6=B8=85=E9=9F=B3?= <2422523675@qq.com>
Date: Sat, 30 Dec 2023 21:55:15 +0800
Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=E5=86=97=E4=BD=99=E6=89=93?=
=?UTF-8?q?=E5=8D=B0=E4=BB=A3=E7=A0=81?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.idea/workspace.xml | 26 +++++++++++++-------------
DockPanel.py | 3 ---
Manager.py | 1 -
SplitPanel.py | 4 ----
4 files changed, 13 insertions(+), 21 deletions(-)
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]