Cài đặt Steam
Đăng nhập
|
Ngôn ngữ
简体中文 (Trung giản thể)
繁體中文 (Trung phồn thể)
日本語 (Nhật)
한국어 (Hàn Quốc)
ไทย (Thái)
Български (Bungari)
Čeština (CH Séc)
Dansk (Đan Mạch)
Deutsch (Đức)
English (Anh)
Español - España (Tây Ban Nha - TBN)
Español - Latinoamérica (Tây Ban Nha cho Mỹ Latin)
Ελληνικά (Hy Lạp)
Français (Pháp)
Italiano (Ý)
Bahasa Indonesia (Indonesia)
Magyar (Hungary)
Nederlands (Hà Lan)
Norsk (Na Uy)
Polski (Ba Lan)
Português (Tiếng Bồ Đào Nha - BĐN)
Português - Brasil (Bồ Đào Nha - Brazil)
Română (Rumani)
Русский (Nga)
Suomi (Phần Lan)
Svenska (Thụy Điển)
Türkçe (Thổ Nhĩ Kỳ)
Українська (Ukraine)
Báo cáo lỗi dịch thuật
"Nested Containers" completely hardcodes all the context menu entries and is with this probably somewhat incompatible with all other mods that interact with the context menu
There seems to be multiple ways to work around this
You are still able to edit the container size just because in "InventoryTetris" the container debug options are added after the call to `ItemGridUI.openItemContextMenu`
This is not done for the item debug options
It is possible to add the item debug options after the `ItemGridUI.openStackContextMenu`
File: `ItemGridUI_events.lua`
Line: 109
or just change `menu:addOptionOnTop` to `menu:addOption` in file `InventoryTetris_DevTool.lua`
```
local item = ItemStack.getFrontItem(gridStack, self.grid.inventory)
TetrisDevTool.insertDebugOptions(menu, item)
```
to `ItemGridUI_events.lua` after line 109
effectively skipping whatever nested containers does to the context menu
It seems this is on their end then ;/