Skip to content

Commit 43971a9

Browse files
committed
Dev Push
1 parent 366c1ae commit 43971a9

File tree

3 files changed

+1083
-205
lines changed

3 files changed

+1083
-205
lines changed

nodeeditor/node_editor_widget.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ def __init__(self, masterRef, parent: QWidget = None):
3737
# crate graphics scene
3838
self.scene = NodeScene(masterRef)
3939

40-
self.createWidgetWindow()
40+
self.create_widget_window()
4141

42-
def createWidgetWindow(self):
42+
def create_widget_window(self):
4343
"""
4444
Set up this ``NodeEditorWidget`` with its layout, :class:`~nodeeditor.node_scene.Scene` and
4545
:class:`~nodeeditor.node_graphics_view.QDMGraphicsView`
@@ -124,7 +124,7 @@ def createWidgetWindow(self):
124124
# Termenal
125125
self.code_output = QTextEdit()
126126
# if selected_theme == night:
127-
self.code_output.setStyleSheet("background-color: #282828")
127+
# self.code_output.setStyleSheet("background-color: #282828")
128128
self.code_output.setFont(QFont('Roboto', 12))
129129
self.v_splitter.addWidget(self.code_output)
130130

0 commit comments

Comments
 (0)