Skip to content

Commit 1278291

Browse files
committed
Clean up some other update label
1 parent 2074772 commit 1278291

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5858,15 +5858,15 @@ def draw_ypaint_about(self, context):
58585858
if updater.using_development_build:
58595859
update_now_txt = "Update to latest commit on '{}' branch".format(updater.current_branch)
58605860
col.operator(addon_updater_ops.AddonUpdaterUpdateNow.bl_idname, text=update_now_txt)
5861-
58625861
else:
58635862
col.operator(
58645863
addon_updater_ops.AddonUpdaterUpdateNow.bl_idname,
58655864
text="Update to "+get_addon_title()+" "+get_version_str(updater.update_version)
58665865
)
5866+
col.label(text="Update is available!")
58675867
elif is_online() or updater.current_branch != None:
58685868
col.operator(addon_updater_ops.RefreshBranchesReleasesNow.bl_idname, text="Check for update", icon="FILE_REFRESH")
5869-
col.label(text="Ucupaint is up to date")
5869+
col.label(text=get_addon_title()+" is up to date")
58705870

58715871
class YPaintAboutPopover(bpy.types.Panel):
58725872
bl_idname = "NODE_PT_ypaint_about_popover"

0 commit comments

Comments
 (0)