Skip to content
Snippets Groups Projects
Commit 8be5b3fa authored by Matt King's avatar Matt King
Browse files

Merge pull request #14453 from mantidproject/14452_HFIR_4Circle_Reduction_too_wide

After running through the test procedures on Windows it was seen that the Dialog did not resize exactly as it does on *nix systems however, it was not ridiculously over-sized and could be resized by the user. If the current size that it automatically opens at becomes a problem for users then another issue should be written to deal with this, other than that I am happy to merge this.
parents f293870d 381fd05d
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,7 @@ import csv ...@@ -10,6 +10,7 @@ import csv
import time import time
from PyQt4 import QtCore, QtGui from PyQt4 import QtCore, QtGui
from mantidqtpython import MantidQt
import reduce4circleControl as r4c import reduce4circleControl as r4c
import guiutility as gutil import guiutility as gutil
...@@ -38,6 +39,10 @@ class MainWindow(QtGui.QMainWindow): ...@@ -38,6 +39,10 @@ class MainWindow(QtGui.QMainWindow):
self.ui = Ui_MainWindow() self.ui = Ui_MainWindow()
self.ui.setupUi(self) self.ui.setupUi(self)
# Make UI scrollable
self._scrollbars = MantidQt.API.WidgetScrollbarDecorator(self)
self._scrollbars.setEnabled(True) # Must follow after setupUi(self)!
# Mantid configuration # Mantid configuration
self._instrument = str(self.ui.comboBox_instrument.currentText()) self._instrument = str(self.ui.comboBox_instrument.currentText())
# config = ConfigService.Instance() # config = ConfigService.Instance()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment