-
Notifications
You must be signed in to change notification settings - Fork 236
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Text horizontally out of the viewport does not become visible when vieport size is increased #412
Comments
Good catch. Unfortunately, I don't understand Flowless' inner code that well, so I'm not the one who can determine where the bug is occurring and then fix it. |
This is another issue I want to look into after better documenting Flowless' code. |
I fixed the bug in FXMisc/Flowless#42. Just waiting for Tomas to merge it. |
I've created a branch in my repo of RichTextFX called MavenAdd the repository <repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories> Add the dependency <dependency>
<groupId>com.github.JordanMartinez</groupId>
<artifactId>RichTextFX</artifactId>
<version>jitpack-master-SNAPSHOT</version>
</dependency> Gradlerepositories {
maven {
url 'https://jitpack.io'
}
}
dependencies {
compile "com.github.JordanMartinez:RichTextFX:jitpack-master-SNAPSHOT"
} Sbtresolvers += "jitpack" at "https://jitpack.io"
libraryDependencies += "com.github.JordanMartinez" % "RichTextFX" % "jitpack-master-SNAPSHOT" |
This was fixed in the latest snapshot of Flowless (0.6-SNAPSHOT), so all one needs to do is refresh their dependencies. |
I have found the a problem regarding scrolling end re-sizing. Since it's not easy to describe I just post the steps needed to reproduce and a GIF showing the behavior:
-- Result: The content stays scrolled to the right
-- Expected: Same behavior as for the vertical dimension (which works just fine)
Sidenote: As horizontal scrolling is broken with Flowless 0.5.1 I used a snapsot that was created from the current state of the Flowless repo.
The text was updated successfully, but these errors were encountered: