Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions opencodeblocks/graphics/blocks/codeblock.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,7 @@ def init_output_panel(self):
""" Initialize the output display widget: QLabel """
output_panel = QTextEdit()
output_panel.setReadOnly(True)
output_panel.setStyleSheet(
"QTextEdit { background-color: #434343; }"
)
output_panel.setFont(self.source_editor.font())
self.splitter.addWidget(output_panel)
return output_panel

Expand Down