فهرست منبع

fix: incorrect custom menu label being displayed

lairaalmas 1 ماه پیش
والد
کامیت
c4f1b5a37e
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      js/menus/menu_custom.js

+ 1 - 1
js/menus/menu_custom.js

@@ -483,7 +483,7 @@ const customMenuState = {
    * @param {object} icon icon for the game mode
    */
   showTitle: function (icon) {
-    if (icon.iconType !== 'infoIcon')
+    if (icon.iconType !== 'infoIcon' && icon.iconType !== 'enter')
       self.lbl_description.name = game.lang[icon.description];
   },