Skip to content

Commit

Permalink
⚡ Better indication of blank item
Browse files Browse the repository at this point in the history
  • Loading branch information
jurialmunkey committed Mar 20, 2024
1 parent 6478810 commit ac505e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion addon.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<addon id="script.skinvariables"
version="2.1.8"
version="2.1.9"
name="Skin Variables"
provider-name="jurialmunkey">
<requires>
Expand Down
2 changes: 1 addition & 1 deletion resources/lib/shortcuts/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@ def _make_item(x, i):
node_name = get_nodename(self.node)

if blank:
return [_make_item(0, {'label': get_localized(32078)})]
return [_make_item(0, {'label': get_localized(32078), 'blank': 'True'})]

return [j for j in (_make_item(x, i) for x, i in enumerate(self.menunode or [])) if j]

Expand Down

0 comments on commit ac505e4

Please sign in to comment.