Make the lifetime of the "print job sent" message 30s

Previously it was 5s and the message would disappear before the user had a chance to press the "Monitor print" button.

CURA-8018
This commit is contained in:
Konstantinos Karmas 2021-07-13 09:59:05 +02:00
parent e8fc88e6b0
commit e31ec31f34

View file

@ -13,6 +13,5 @@ class PrintJobUploadSuccessMessage(Message):
def __init__(self) -> None: def __init__(self) -> None:
super().__init__( super().__init__(
text = I18N_CATALOG.i18nc("@info:status", "Print job was successfully sent to the printer."), text = I18N_CATALOG.i18nc("@info:status", "Print job was successfully sent to the printer."),
title = I18N_CATALOG.i18nc("@info:title", "Data Sent"), title = I18N_CATALOG.i18nc("@info:title", "Data Sent")
lifetime = 5
) )