删除冗余打印代码
This commit is contained in:
parent
c878240d9e
commit
108d307ccd
|
@ -39,20 +39,20 @@
|
|||
<option name="hideEmptyMiddlePackages" value="true" />
|
||||
<option name="showLibraryContents" value="true" />
|
||||
</component>
|
||||
<component name="PropertiesComponent"><![CDATA[{
|
||||
"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"
|
||||
<component name="PropertiesComponent">{
|
||||
"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"
|
||||
}
|
||||
}]]></component>
|
||||
}</component>
|
||||
<component name="RunManager" selected="Python.SplitPanel">
|
||||
<configuration name="DockPanel" type="PythonConfigurationType" factoryName="Python" temporary="true" nameIsGenerated="true">
|
||||
<module name="SimpleIDE" />
|
||||
|
|
|
@ -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([])
|
||||
|
|
|
@ -101,7 +101,6 @@ class AcceptPanel(QWidget):
|
|||
self.setVisible(False)
|
||||
|
||||
|
||||
|
||||
class DragManager(QObject):
|
||||
__unique_inst: 'DragManager' = None
|
||||
|
||||
|
|
|
@ -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]
|
||||
|
||||
|
|
Loading…
Reference in New Issue