Phil Beauvoir

Results 821 comments of Phil Beauvoir

@kysmith-csg Can you test the latest code to see if this fixes the issue?

Sorry for not responding earlier. I agree that this would be a nice feature, as long as it is optional and doesn't affect existing API. But then I know you...

The class of interest is `org.eclipse.draw2d.FigureCanvas` and this line: `static final int DEFAULT_STYLES = SWT.NO_REDRAW_RESIZE | SWT.NO_BACKGROUND | SWT.V_SCROLL | SWT.H_SCROLL;` If I remove `SWT.NO_BACKGROUND` like this: `static final int...

Note the JavaDoc for `SWT.NO_BACKGROUND`: > This style might be used as an alternative to "double-buffering" in order to reduce flicker. A `ScrollingGraphicalViewer` creates a `FigureCanvas` like this: `new FigureCanvas(parent,...

I got a better result by hacking into `FigureCanvas` so that if `SWT.DOUBLE_BUFFERED` and `SWT.NO_BACKGROUND` are used then only use `SWT.DOUBLE_BUFFERED`: ```java private static int checkStyle(int style) { if((style &...

It's only happening on Windows at 200% scale. I tried to narrow it down to pure SWT but I can't reproduce it without using a `org.eclipse.draw2d.LightweightSystem` so there's something going...

> I experience the same issue on macOS, but have not found the time to file a ticket. On Mac you have to turn on the "Keyboard navigation” setting to...

> Navigation is possible on macOS. However, hitting enter on the 'Yes' button doesn't produce the desired effect. That's because the Cancel button is set as the default button. To...

Twinkle Tray is a nice app but I had to uninstall it because it's creating a huge amount of these `.tmp` files and not cleaning up when the app exits....

More info here - https://github.com/electron/electron/issues/10139 Someone [suggests](https://github.com/electron/electron/issues/10139#issuecomment-404623227) adding `"asarUnpack": "**/*.node"` to the `"build":` section of the config file.