Rubén López

Results 17 comments of Rubén López

@ndee85 any chance that we could configure this key binding in COA? Alt+Click is pretty much universal in Linux to move windows.

@magdesign that's "literally" incorrect. I've been using Linux exclusively for the past 20 years, across several distributions and desktop environments, and Alt+Click to move/resize windows has always been there, but...

In recent versions of Ubuntu, they have dropped completely support for Python 2.x because it's no longer maintained and can have vulnerabilities. Gimp 2.10 doesn't support python3 yet (even though...

Looking forward to this feature. When running ts-node inside electron, `source-map-support` blows up every time any module attempts to read the stack of an exception, with the following message: ```...

I dropped the require that you pointed out in #1533 altogether, and that fixes the issue. I suspect the right solution in my case would be to fix the interoperability...

I'm also affected by this bug. I want to create a DOM-like structure in which the root is created by C++ and then JS can append nodes to the tree....

Actually, that approach also doesn't work well. Consider the following Javascript: ```js const root = new Group(); root->addChild(new Group()); // Will be garbage collected because there are no more JS...

To follow up on this, I found a way to support my particular use case for v8pp. It requires having full control of the classes for which you are creating...

Sure you can use JS+DOM hacks (based on IntersectionObserver) to figure out when something started to stuck. The exact same argument could be given for position:sticky itself. Plenty of websites...

Thanks for the details @upsuper What exactly happens when a layout event fires that slows down pages? Is it that the layout algorithm gets blocked until the event handler completes?...