We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5455b0a commit 6ee47f5Copy full SHA for 6ee47f5
2 files changed
src/cs2/items/assets/inventory_asset.js
@@ -331,6 +331,12 @@ export default class InventoryAsset extends Asset {
331
return;
332
}
333
334
+ if (selectedItem != unsafeWindow.iActiveSelectView
335
+ || this._asset != unsafeWindow.g_ActiveInventory.selectedItem
336
+ ) {
337
+ return;
338
+ }
339
+
340
// Display storage unit name
341
const nameTag = inventory.items.find(x => x.iteminfo.id == this._assetid)?.attributes["custom name attr"];
342
if (nameTag) {
src/css/style.css
@@ -1310,7 +1310,7 @@
1310
1311
1312
.cs2s_settings_form {
1313
- overflow-y: scroll;
+ overflow-y: auto;
1314
padding: 0px 24px 24px 24px;
1315
width: 900px;
1316
max-height: 85vh;
0 commit comments