Sam'

Results 44 comments of Sam'

Hello, I believe the bug report is this one : https://bugs.openjdk.java.net/browse/JDK-8202296 Apparently the issue is fixed on OpenJFX 15 because the keyModifiers are now considered in MouseInput : https://github.com/javafxports/openjdk-jfx/blob/96bbea07f2675af93212af1a097628814f86680e/modules/javafx.graphics/src/main/java/com/sun/glass/ui/monocle/MouseInput.java#L159 I'm...

Can you provide a PR?

Hi, Which version are you using? Could you drop your code or some snippets here so that I could take a look? It looks like you constructed a SpreadsheetView without...

I recall that I needed to style the Label of the StatusBar at runtime. The solution consisting of adding/removing CSS styleclass is not applicable because I receive the style at...

> > > Quick question: does the server return arbitrary and randomly generated styles? If not, if it is a limited list of different styles then you could cater for...

I think you are totally right but I see that I use it in my code so I want to investigate and see why I have been using something that...

I confirm that setStyleText does not work. However, the trick : ``` Node node = lookup(".status-label"); if(node != null){ node.setStyle(cssString.toString()); } ``` is not working because the Label style is...

Well.. There is quite a lot of code inside `TableViewBehavior` and `TableViewBehaviorBase`. If we want to get rid of the dependencies, it means I have to get rid of the...

The stackTrace does not link to ControlsFX. So We'll have to dig to find if this is a regression on JavaFX side or a mis-use on our side. Thanks for...