Daniel Richter

Results 14 comments of Daniel Richter

Since I was about to do the same: To reproduce what @crufter did in your own JTD setup: - Enable generation of [Jekyll Pure Liquid Table of Contents](https://github.com/allejo/jekyll-toc) 1. Download...

My solution: ```javascript $("selector_for_your_images").each(function() { $(this).mouseover( function(event) { $(this).ezPlus(); $(this).unbind(event); }) }); ``` ezPlus is not initialized until the first mouseover (and thus the images are loaded on demand).

In https://github.com/lin-ycv/EverythingPowerToys/issues/33 I had the same issue and could track the bug down to **file thumbnails for PDF files generated by the Adobe Preview Handler**. The problem (only?) occured when...

> In [lin-ycv/EverythingPowerToys#33](https://github.com/lin-ycv/EverythingPowerToys/issues/33) I had the same issue and could track the bug down to **file thumbnails for PDF files generated by the Adobe Preview Handler**. > > The problem...

> Is it even possible to run the full-version on Mac? May anyone has an idea on what else I can try? There is the target `standalone.standalone-steam.package.darwin64`. After running it...

As already stated above, this feature is available for the following plugins: > - **Folder**/SearchResult.cs > - **Indexer**/SearchHelper/SearchResult.cs > - ([**Everything**/SearchResult.cs](https://github.com/lin-ycv/EverythingPowerToys/blob/main/SearchHelper/SearchResult.cs))

Yes. But I can't do it without having this changes in PTRun first. :-)

> Do we have a check if the access to the path is denied. We should prevent a crash in this case. Hm, not sure what to do... The Drag&Drop...

| no drag image | with file thumbnail as drag image | | --- | --- | | ![Recording 2022-12-02 at 16 16 17](https://user-images.githubusercontent.com/12428377/205325962-9ea61c2e-5b6f-4301-a1d2-df3fe7fdc673.gif) | ![Recording 2022-12-02 at 16 18...

> Looks good. Let's push it. Done. Changed `DoDragDrop` to: ```cs _viewModel.Hide(); try { // DoDragDrop with file thumbnail as drag image var dataObject = DragDataObject.FromFile(fileDropResult.Path); IntPtr hBitmap = Image.WindowsThumbnailProvider.GetHBitmap(Path.GetFullPath(fileDropResult.Path),...