We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 582fcc7 commit f0562a2Copy full SHA for f0562a2
usr/lib/linuxmint/mintUpdate/mintUpdate.py
@@ -1019,7 +1019,10 @@ def run(self):
1019
tooltip = _("Cinnamon applet")
1020
elif update.spice_type == cinnamon.SPICE_TYPE_DESKLET:
1021
tooltip = _("Cinnamon desklet")
1022
- elif update.spice_type == cinnamon.SPICE_TYPE_ACTION:
+ elif update.spice_type == "action":
1023
+ # The constant cinnamon.SPICE_TYPE_ACTION is new in Cinnamon 6.0
1024
+ # use the value "action" instead here so this code can be
1025
+ # backported.
1026
tooltip = _("Nemo action")
1027
elif update.spice_type == cinnamon.SPICE_TYPE_THEME:
1028
tooltip = _("Cinnamon theme")
0 commit comments