We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hey,
I wanted to test some things with themes and tried using a golden.FancyFillBar, but the contents of the fill bar aren't on the right place.
This simple code
import pyglet import glooey.themes.golden as golden window = pyglet.window.Window() gui = golden.Gui(window) bar = golden.FancyFillBar() # bar.alignment = 'center' gui.add(bar) bar.fraction_filled = .5 pyglet.app.run()
creates the following:
It seems it passed the tests because the bar is at the right place when its alignment is "center".
The text was updated successfully, but these errors were encountered:
f1d9711
Thanks for finding this. The problem was that the Base and the Fill had different default alignments, and it should be fixed now.
Base
Fill
Sorry, something went wrong.
No branches or pull requests
Hey,
I wanted to test some things with themes and tried using a golden.FancyFillBar, but the contents of the fill bar aren't on the right place.
This simple code
creates the following:
It seems it passed the tests because the bar is at the right place when its alignment is "center".
The text was updated successfully, but these errors were encountered: