Browse Source

[fix] desktop icons frappe/erpnext#5850

version-14
Rushabh Mehta 9 years ago
parent
commit
d203857c83
1 changed files with 1 additions and 4 deletions
  1. +1
    -4
      frappe/desk/doctype/desktop_icon/desktop_icon.py

+ 1
- 4
frappe/desk/doctype/desktop_icon/desktop_icon.py View File

@@ -66,12 +66,9 @@ def get_desktop_icons(user=None):
for standard_icon in standard_icons:
if standard_icon.module_name not in user_icon_names:

# flag for modules_setup page
standard_icon.hidden_in_standard = standard_icon.hidden

# if blocked, hidden too!
if standard_icon.blocked:
standard_icon.hidden = 1
standard_icon.hidden_in_standard = 1

user_icons.append(standard_icon)



Loading…
Cancel
Save