#2529 Prioritize disabled for UI entry state
| @@ -2875,12 +2875,12 @@ function getWorldEntry(name, data, entry) { | ||
| 2875 | 2875 | }); |
| 2876 | 2876 | |
| 2877 | 2877 | const entryState = function () { |
| 2878 | 2878 | if (entry.constantdisable === true) { |
| 2879 | + return 'disabled'; | |
| 2880 | + } else if (entry.constant === true) { | |
| 2879 | 2881 | return 'constant'; |
| 2880 | 2882 | } else if (entry.vectorized === true) { |
| 2881 | 2883 | return 'vectorized'; |
| 2882 | - } else if (entry.disable === true) { | |
| 2883 | - return 'disabled'; | |
| 2884 | 2884 | } else { |
| 2885 | 2885 | return 'normal'; |
| 2886 | 2886 | } |