1
0
mirror of https://github.com/ciromattia/kcc synced 2026-01-01 02:49:41 +00:00

Disable horizontal mode check when "no split/rotate" is checked.

This commit is contained in:
Ciro Mattia Gonano
2013-07-04 11:50:20 +02:00
parent 35751efad5
commit fdfe5fbe39

View File

@@ -313,6 +313,12 @@ class Ui_KCC(object):
GUI.GammaLabel.setText('Gamma: ' + str(value))
self.GammaValue = value
def toggleNoSplitRotate(self, value):
if value:
GUI.RotateBox.setEnabled(False)
else:
GUI.RotateBox.setEnabled(True)
def changeDevice(self, value, start=False):
if value == 11 and (start or self.currentMode != 3):
GUI.BasicModeButton.setEnabled(False)
@@ -440,6 +446,7 @@ class Ui_KCC(object):
GUI.FileButton.clicked.connect(self.selectFile)
GUI.ConvertButton.clicked.connect(self.convertStart)
GUI.GammaSlider.valueChanged.connect(self.changeGamma)
GUI.NoRotateBox.stateChanged.connect(self.toggleNoSplitRotate)
GUI.DeviceBox.activated.connect(self.changeDevice)
KCC.connect(self.worker, QtCore.SIGNAL("progressBarTick"), self.updateProgressbar)
KCC.connect(self.worker, QtCore.SIGNAL("modeConvert"), self.modeConvert)