GUI: beamline view vertical not horizontal

This commit is contained in:
appleb_m
2025-12-10 13:42:52 +01:00
parent fd58fbc07a
commit 0ed2f85faa
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -2,6 +2,7 @@ unreleased:
- added check box to numberlineedits to switch between user input and spreadsheet
- re-enabled MLprediciton
- fixed bug in gui where manual sample couldnt be created when run nubmer was negative.
- Combined beamline view now split vertically not horizontally
0.2.67
- added run number to sampleshortinfo
- ingest raster result, including beam center to database
+1 -1
View File
@@ -110,7 +110,7 @@ class MainWindow(QMainWindow):
self.sample_camera = SampleCameraImageLabel(geom=geom, raster=self.raster, parent=top_widget, default_image=default_image)
self.beamline_view_container = QWidget(parent=top_widget)
self.beamline_view_layout = QHBoxLayout(self.beamline_view_container)
self.beamline_view_layout = QVBoxLayout(self.beamline_view_container)
self.beamline_view_layout.setContentsMargins(0,0,0,0)
self.beamline_view_layout.setSpacing(6)