删除冗余打印代码
This commit is contained in:
parent
c878240d9e
commit
108d307ccd
|
@ -39,20 +39,20 @@
|
||||||
<option name="hideEmptyMiddlePackages" value="true" />
|
<option name="hideEmptyMiddlePackages" value="true" />
|
||||||
<option name="showLibraryContents" value="true" />
|
<option name="showLibraryContents" value="true" />
|
||||||
</component>
|
</component>
|
||||||
<component name="PropertiesComponent"><![CDATA[{
|
<component name="PropertiesComponent">{
|
||||||
"keyToString": {
|
"keyToString": {
|
||||||
"Python.DockPanel.executor": "Debug",
|
"Python.DockPanel.executor": "Debug",
|
||||||
"Python.Manager.executor": "Run",
|
"Python.Manager.executor": "Run",
|
||||||
"Python.SplitPanel.executor": "Run",
|
"Python.SplitPanel.executor": "Run",
|
||||||
"Python.Widget.executor": "Run",
|
"Python.Widget.executor": "Run",
|
||||||
"Python.test.executor": "Run",
|
"Python.test.executor": "Run",
|
||||||
"RunOnceActivity.OpenProjectViewOnStart": "true",
|
"RunOnceActivity.OpenProjectViewOnStart": "true",
|
||||||
"RunOnceActivity.ShowReadmeOnStart": "true",
|
"RunOnceActivity.ShowReadmeOnStart": "true",
|
||||||
"SHARE_PROJECT_CONFIGURATION_FILES": "true",
|
"SHARE_PROJECT_CONFIGURATION_FILES": "true",
|
||||||
"git-widget-placeholder": "main",
|
"git-widget-placeholder": "main",
|
||||||
"settings.editor.selected.configurable": "preferences.sourceCode"
|
"settings.editor.selected.configurable": "preferences.sourceCode"
|
||||||
}
|
}
|
||||||
}]]></component>
|
}</component>
|
||||||
<component name="RunManager" selected="Python.SplitPanel">
|
<component name="RunManager" selected="Python.SplitPanel">
|
||||||
<configuration name="DockPanel" type="PythonConfigurationType" factoryName="Python" temporary="true" nameIsGenerated="true">
|
<configuration name="DockPanel" type="PythonConfigurationType" factoryName="Python" temporary="true" nameIsGenerated="true">
|
||||||
<module name="SimpleIDE" />
|
<module name="SimpleIDE" />
|
||||||
|
|
|
@ -115,9 +115,6 @@ class DockPanel(QWidget):
|
||||||
def sync_status(self):
|
def sync_status(self):
|
||||||
self.drag_header.setVisible(self.default_header)
|
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__":
|
if __name__ == "__main__":
|
||||||
app=QApplication([])
|
app=QApplication([])
|
||||||
|
|
|
@ -101,7 +101,6 @@ class AcceptPanel(QWidget):
|
||||||
self.setVisible(False)
|
self.setVisible(False)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class DragManager(QObject):
|
class DragManager(QObject):
|
||||||
__unique_inst: 'DragManager' = None
|
__unique_inst: 'DragManager' = None
|
||||||
|
|
||||||
|
|
|
@ -87,10 +87,6 @@ class SplitPanel(QWidget):
|
||||||
self.split_member[1].setVisible(True)
|
self.split_member[1].setVisible(True)
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def paintEvent(self, a0):
|
|
||||||
super(SplitPanel, self).paintEvent(a0)
|
|
||||||
print(self.split_member[0].windowTitle() + "\\" + self.split_member[1].windowTitle())
|
|
||||||
|
|
||||||
def child(self):
|
def child(self):
|
||||||
return self.split_member[0], self.split_member[1], self.split_info[0]
|
return self.split_member[0], self.split_member[1], self.split_info[0]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue