diff --git a/damnit/gui/main_window.py b/damnit/gui/main_window.py index 88d6b379..2fcc9894 100644 --- a/damnit/gui/main_window.py +++ b/damnit/gui/main_window.py @@ -790,9 +790,11 @@ def _create_view(self) -> None: self.plot._button_plot_runs.setMinimumWidth(200) plot_horizontal_layout.addStretch() - plot_horizontal_layout.addWidget(self.plot._combo_box_x_axis) - plot_horizontal_layout.addWidget(self.plot.vs_button) + plot_horizontal_layout.addWidget(QtWidgets.QLabel("Y:")) plot_horizontal_layout.addWidget(self.plot._combo_box_y_axis) + plot_horizontal_layout.addWidget(self.plot.vs_button) + plot_horizontal_layout.addWidget(QtWidgets.QLabel("X:")) + plot_horizontal_layout.addWidget(self.plot._combo_box_x_axis) plot_vertical_layout.addLayout(plot_horizontal_layout)