Skip to content

Commit fa699db

Browse files
authored
Merge pull request #47 from pshriwise/height_fix
Correcting number of decimals in the height box.
2 parents 42f8687 + f58e178 commit fa699db

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

openmc_plotter/docks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def _createOptionsBox(self):
133133
# Height
134134
self.heightBox = QDoubleSpinBox(self)
135135
self.heightBox.setRange(.1, 99999)
136-
self.widthBox.setDecimals(9)
136+
self.heightBox.setDecimals(9)
137137
self.heightBox.valueChanged.connect(self.main_window.editHeight)
138138

139139
# ColorBy

0 commit comments

Comments
 (0)