-
Notifications
You must be signed in to change notification settings - Fork 201
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tile css is getting overridden #134
Comments
Sorry for the late reply. So it looks like this only happens in the NumberTileSkin right? |
No issues at all. Actually it happens in all the skins but the skins in the last rows are updated in every second and that's why the skin css gets reverted back to the one embedded in TilesFX. That's the reason, they look normal. Since the other skins in the middle row ain't updated in every second dynamically, it just uses the root css and that's why they look strange. It actually gets overridden in all skins. |
Even when a dialog appears on this |
If the application loses focus, the CSS gets overridden |
Hmm...interesting because TilesFX only makes very little use of css. Could you provide a simple code example so that I can reproduce your issue? |
Is it possible for you to checkout the actual project and test it there directly? It would just take 5 mins to set up in Eclipse. I am proposing this as this problem with the CSS override is so weird that I cannot even pinpoint who the real culprit here is and how I can even work it around. If you are interested to look into the actual application: https://github.com/amitjoy/osgifx
I managed to get rid of it partially by recreating the tiles every time when the The TilesFX integration tab sources are in You can easily debug it. I spent quite a good number of hours to fix this until I thought of contacting you for your help. |
I would prefer a simple example that shows the problem because I cannot reproduce it here with the projects using TilesFX. To me it looks like a redraw issue because the text is scaled in code and no css is involved here. |
No issues at all. I will then try to create a small example and will let you know. Thanks for your support 👍 |
In my application, I have been using
TilesFX (17.1.9)
. I have also specified.root
selector as follows:This works perfectly for the application but somehow it behaves quite strange for TileFX. When the application starts, the tiles use the CSS embedded in the TilesFX library and when the application goes into background and comes again to foreground, the Tiles start using the CSS specified in the root node (
.root
).I would like to use the CSS embedded within the library all the time. Is there any way to fix this issue that even if the application goes to background, the tiles will keep on using the CSS from the TilesFX library and stay consistent always.
Screenshot after application starts:
Screenshot after application goes to background and returns to foreground:
The text was updated successfully, but these errors were encountered: