PixelRick / CyberpunkSaveEditor

A tool to edit Cyberpunk 2077 sav.dat files
MIT License
320 stars 44 forks source link

Recommend a longer pull-down menu search time length #17

Open ParadoxicallyHuman opened 3 years ago

ParadoxicallyHuman commented 3 years ago

I was messing with playerCraftBook under Scriptable Systems/14 CraftingSystem and found that instead of scrolling through the hundreds of items I could type in/over the pull-down menu. The only problem I had was that the search parameters disappeared after a second or two.

It would be awesome if the pull-down could be typed in to without the search query going away until an item is selected, also allowing for editing the query.

I was able to find a workaround for Lizzie’s Omaha pistol crafting bug! Just added Preset_Omaha_Suzie_Legendary to the queue and in game the recipe worked properly. You can also "Add" scopes and other weapon/clothing Mods that are not acquirable as recipes in game.

Awesome tool by the way! it has added to the fun of the game by giving options to play with, I wish I could be more helpful but my programming skills are bad.

PixelRick commented 3 years ago

Backspace should work when typing a query, the underlying temporary buffer is reset after 1 second. The reset time was set when the backspace feature wasn't implemented yet, I can probably bring the delay up to 5 seconds.. or disable the reset completely. This will be in next release.

I implemented some combo box where the top box is an input text box in another project, I will try to merge both features. And this will be later on because it is difficult to make it right: widgets can hold a shared state with static variables but I have to take care that it doesn't end up with all combo boxes displaying the current search...

ParadoxicallyHuman commented 3 years ago

Hey thanks for checking out and considering my suggestion, I hope it is not too difficult to adjust!

PixelRick commented 2 years ago

How is it now ?