Re: RFR: 8231864: JavaFX Labels in Tab's VBox is not displayed until it is clicked [v2]

2023-01-05 Thread Ambarish Rapte
On Mon, 2 Jan 2023 14:10:20 GMT, Lukasz Kostyra wrote: >> Creating a not-displayed node and then modifying its contents caused JFX to >> not consume its old dirty region and thus not update it. When such node was >> displayed, its old dirty region was used for drawing, which in some cases >> (

Re: RFR: 8231864: JavaFX Labels in Tab's VBox is not displayed until it is clicked [v2]

2023-01-02 Thread Lukasz Kostyra
On Wed, 21 Dec 2022 13:38:31 GMT, Ambarish Rapte wrote: >> Lukasz Kostyra has updated the pull request incrementally with one >> additional commit since the last revision: >> >> NGNode: Change comment at dirty bounds update for clarification > > modules/javafx.graphics/src/main/java/com/sun/j

Re: RFR: 8231864: JavaFX Labels in Tab's VBox is not displayed until it is clicked [v2]

2023-01-02 Thread Lukasz Kostyra
> Creating a not-displayed node and then modifying its contents caused JFX to > not consume its old dirty region and thus not update it. When such node was > displayed, its old dirty region was used for drawing, which in some cases > (ex. new content taking more space - a Label having more text

Re: RFR: 8231864: JavaFX Labels in Tab's VBox is not displayed until it is clicked

2022-12-21 Thread Ambarish Rapte
On Mon, 19 Dec 2022 15:50:19 GMT, Lukasz Kostyra wrote: > Creating a not-displayed node and then modifying its contents caused JFX to > not consume its old dirty region and thus not update it. When such node was > displayed, its old dirty region was used for drawing, which in some cases > (ex.

Re: RFR: 8231864: JavaFX Labels in Tab's VBox is not displayed until it is clicked

2022-12-19 Thread Kevin Rushforth
On Mon, 19 Dec 2022 16:55:14 GMT, Andy Goryachev wrote: >> Creating a not-displayed node and then modifying its contents caused JFX to >> not consume its old dirty region and thus not update it. When such node was >> displayed, its old dirty region was used for drawing, which in some cases >>

Re: RFR: 8231864: JavaFX Labels in Tab's VBox is not displayed until it is clicked

2022-12-19 Thread Andy Goryachev
On Mon, 19 Dec 2022 15:50:19 GMT, Lukasz Kostyra wrote: > Creating a not-displayed node and then modifying its contents caused JFX to > not consume its old dirty region and thus not update it. When such node was > displayed, its old dirty region was used for drawing, which in some cases > (ex.

Re: RFR: 8231864: JavaFX Labels in Tab's VBox is not displayed until it is clicked

2022-12-19 Thread Kevin Rushforth
On Mon, 19 Dec 2022 15:50:19 GMT, Lukasz Kostyra wrote: > Creating a not-displayed node and then modifying its contents caused JFX to > not consume its old dirty region and thus not update it. When such node was > displayed, its old dirty region was used for drawing, which in some cases > (ex.

RFR: 8231864: JavaFX Labels in Tab's VBox is not displayed until it is clicked

2022-12-19 Thread Lukasz Kostyra
Creating a not-displayed node and then modifying its contents caused JFX to not consume its old dirty region and thus not update it. When such node was displayed, its old dirty region was used for drawing, which in some cases (ex. new content taking more space - a Label having more text as in bu