Aljnk

Results 18 comments of Aljnk

There are no such options in the right-click menu Save as Component - not save settings - tested.

Problem with `minWidth = $e.width();` when element hidden. https://jsfiddle.net/kgqhrj1x/

The same request: Button padding AND BUTTON MIN WIDTH can help with this: ![Screenshot_1](https://user-images.githubusercontent.com/11256478/212353106-5f27ce84-8183-4392-903c-2cb502ca5f98.jpg) FittedBox - work not so good in this case. Before was better...

This hook give the same result: ![3](https://user-images.githubusercontent.com/11256478/212479172-4bb00e5b-1f30-42ee-9a1a-d484abdccae2.jpg) ![4](https://user-images.githubusercontent.com/11256478/212479175-95ba24b5-9efd-4317-8df0-2782cf53a065.jpg)

Sorry, I found error - two times call ` Navigator.pop(context);`

The problem is in this code: ``` @classmethod def VALIDATE_INPUTS(self, file_path, update_on_frame_load): _, n_frames = self.get_frames(self, file_path, update_on_frame_load) if n_frames==0: return f"Found 0 frames in path {file_path}" return True ```...

if delete `VALIDATE_INPUTS` and add validation inside `get_frames` - it won't be as pretty, but it will work ``` def get_frames(self, file_path, update_on_frame_load): ds = FrameDataset(file_path, outdir_prefix='', videoframes_root=folder_paths.get_output_directory(), update_on_getitem=update_on_frame_load) if...

(IMPORT FAILED): ...\Portable\ComfyUI\ComfyUI\custom_nodes\human-parser-comfyui-node ``` if torch.cuda.is_available(): _backend = load(name="inplace_abn", extra_cflags=["-O3"], sources=[path.join(_src_path, f) for f in [ "inplace_abn.cpp", "inplace_abn_cpu.cpp", "inplace_abn_cuda.cu", "inplace_abn_cuda_half.cu" ]], extra_cuda_cflags=["--expt-extended-lambda"]) ``` Visual Studio -> Command '['where', 'cl']' returned...

I add cl.exe to the PATH - Thanks - it work. I read your messages and think about nvcc - I can't find it. I'm trying to reinstall "NVIDIA GPU...

found this - https://stackoverflow.com/questions/73267945/cl-command-line-warning-d9002-ignoring-unknown-option-o3 ???