mirror of
https://github.com/ciromattia/kcc
synced 2026-08-29 15:07:07 +00:00
label spread preview default is high quality (#1429)
This commit is contained in:
+1
-1
@@ -780,7 +780,7 @@ Keeping this file may crash some readers like the Kobo native CBZ reader.</strin
|
||||
</size>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Hold shift while clicking for a higher quality preview.</string>
|
||||
<string>Hold shift while clicking for a low quality preview.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Label Spreads</string>
|
||||
|
||||
@@ -671,9 +671,9 @@ class KCCGUI(KCC_ui.Ui_mainWindow):
|
||||
GUI.jobList.scrollToBottom()
|
||||
|
||||
def labelSpreadsStart(self):
|
||||
low_quality_preview = True
|
||||
low_quality_preview = False
|
||||
if QApplication.keyboardModifiers() == Qt.ShiftModifier:
|
||||
low_quality_preview = False
|
||||
low_quality_preview = True
|
||||
currentJobs = []
|
||||
# TODO: make this a function since it's copy pasted
|
||||
for i in range(GUI.jobList.count()):
|
||||
|
||||
@@ -861,7 +861,7 @@ class Ui_mainWindow(object):
|
||||
self.humbleButton.setText(QCoreApplication.translate("mainWindow", u"Humble Bundle Referral", None))
|
||||
self.kofiButton.setText(QCoreApplication.translate("mainWindow", u"Support me on Ko-fi", None))
|
||||
#if QT_CONFIG(tooltip)
|
||||
self.labelSpreadsButton.setToolTip(QCoreApplication.translate("mainWindow", u"Hold shift while clicking for a higher quality preview.", None))
|
||||
self.labelSpreadsButton.setToolTip(QCoreApplication.translate("mainWindow", u"Hold shift while clicking for a low quality preview.", None))
|
||||
#endif // QT_CONFIG(tooltip)
|
||||
self.labelSpreadsButton.setText(QCoreApplication.translate("mainWindow", u"Label Spreads", None))
|
||||
#if QT_CONFIG(tooltip)
|
||||
|
||||
Reference in New Issue
Block a user