This commit is contained in:
Kovid Goyal 2023-08-08 16:53:06 +05:30
parent 42512baeac
commit cafd71b86f
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -31,6 +31,7 @@ class Dialog(QDialog):
self.msg = m = QLabel(self) self.msg = m = QLabel(self)
m.setOpenExternalLinks(True) m.setOpenExternalLinks(True)
m.setMinimumWidth(350), m.setWordWrap(True), m.setObjectName("msg") m.setMinimumWidth(350), m.setWordWrap(True), m.setObjectName("msg")
m.setMaximumHeight(400)
m.setText(msg) m.setText(msg)
h.addWidget(self.icon_widget), h.addSpacing(10), h.addWidget(m) h.addWidget(self.icon_widget), h.addSpacing(10), h.addWidget(m)