Commit b0e4af35ec8ddb5e7bfa658f916fbf29caa5a550
remove the rounded extra frame around the main message editor
for one, it just added visual noise.
second, it did not respect the color scheme, which made it unusable with
light-on-dark colors.
Task-number: QTBUG-7778
| |   |
| 135 | 135 | void MessageEditor::setupEditorPage() |
| 136 | 136 | { |
| 137 | 137 | QFrame *editorPage = new QFrame; |
| editorPage->setObjectName(QLatin1String("editorPage")); |
| 139 | 138 | |
| 140 | 139 | editorPage->setStyleSheet(QLatin1String( |
| "QFrame#editorPage { border-image: url(:/images/transbox.png) 12 16 16 12 repeat;" |
| " border-width: 12px 16px 16px 12px; }" |
| "QFrame#editorPage { background-color: white; }" |
| 144 | 140 | "QLabel { font-weight: bold; }" |
| 145 | 141 | )); |
| 146 | 142 | editorPage->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed)); |