删除提问功能、替换答辩模板

This commit is contained in:
2025-08-22 20:07:17 +08:00
parent da723409ca
commit 39fcaf35ca
8 changed files with 27 additions and 18 deletions

View File

@@ -109,3 +109,12 @@ class MyGroupHeaderCardWidget(GroupHeaderCardWidget):
self.groupLayout.addWidget(group)
self.groupWidgets.append(group)
return group
class NotImplementedWidget(QWidget):
def __init__(self, parent=None):
super().__init__(parent)
self.layout = QVBoxLayout(self)
self.label = DisplayLabel("🚧", self)
self.label.setAlignment(Qt.AlignCenter)
self.layout.addWidget(self.label)