-
Notifications
You must be signed in to change notification settings - Fork 84
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
Toggle switch widget moves outside of slider area #28
Comments
I think this is a glitch with toggle sliders in general; it also happens with the playback "loop" slider |
I've determined the culprit (but not the underlying cause).
.tile {
-fx-font-size: 11pt;
} I can confirm the following behavior:
Seems like it works in 3pt-increments? This is also definitely interacting weirdly with something else in the stylesheets (either The easiest fix I can think of would to add this to the base stylesheet: .tile .toggle-switch {
-fx-font-size: 12pt;
} but that doesn't fix the problems with toggle switches not in tiles that have their font sizes set, nor does it solve the issue of invisible toggle switches in tile property sheets |
Fixes wpilibsuite#28 Fixes wpilibsuite#176
.toggle-switch {
-fx-font-size: 12px !important;
} ? |
That would lock all toggle switches to the same size, which I would prefer not to do |
When toggling a Toggle Switch widget it moves outside of the oval track on the right side. See attached screen shot.
The text was updated successfully, but these errors were encountered: