parent
aa3017dd58
commit
3b6a504d7b
@ -81,13 +81,6 @@ class _CrashDialog(QDialog):
|
|||||||
self._paste_client = pastebin.PastebinClient(self)
|
self._paste_client = pastebin.PastebinClient(self)
|
||||||
self._init_text()
|
self._init_text()
|
||||||
|
|
||||||
info = QLabel("What were you doing when this crash/bug happened?")
|
|
||||||
self._vbox.addWidget(info)
|
|
||||||
self._info = QTextEdit(tabChangesFocus=True, acceptRichText=False)
|
|
||||||
self._info.setPlaceholderText("- Opened http://www.example.com/\n"
|
|
||||||
"- Switched tabs\n"
|
|
||||||
"- etc...")
|
|
||||||
self._vbox.addWidget(self._info, 5)
|
|
||||||
contact = QLabel("I'd like to be able to follow up with you, to keep "
|
contact = QLabel("I'd like to be able to follow up with you, to keep "
|
||||||
"you posted on the status of this crash and get more "
|
"you posted on the status of this crash and get more "
|
||||||
"information if I need it - how can I contact you?")
|
"information if I need it - how can I contact you?")
|
||||||
@ -104,6 +97,14 @@ class _CrashDialog(QDialog):
|
|||||||
self._contact.setPlaceholderText("Mail or IRC nickname")
|
self._contact.setPlaceholderText("Mail or IRC nickname")
|
||||||
self._vbox.addWidget(self._contact, 2)
|
self._vbox.addWidget(self._contact, 2)
|
||||||
|
|
||||||
|
info = QLabel("What were you doing when this crash/bug happened?")
|
||||||
|
self._vbox.addWidget(info)
|
||||||
|
self._info = QTextEdit(tabChangesFocus=True, acceptRichText=False)
|
||||||
|
self._info.setPlaceholderText("- Opened http://www.example.com/\n"
|
||||||
|
"- Switched tabs\n"
|
||||||
|
"- etc...")
|
||||||
|
self._vbox.addWidget(self._info, 5)
|
||||||
|
|
||||||
self._vbox.addSpacing(15)
|
self._vbox.addSpacing(15)
|
||||||
self._debug_log = QTextEdit(tabChangesFocus=True, acceptRichText=False,
|
self._debug_log = QTextEdit(tabChangesFocus=True, acceptRichText=False,
|
||||||
lineWrapMode=QTextEdit.NoWrap)
|
lineWrapMode=QTextEdit.NoWrap)
|
||||||
|
Loading…
Reference in New Issue
Block a user