-
Notifications
You must be signed in to change notification settings - Fork 129
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
[VisUI Bug] GridGroup inside MultiSplitPane not resizing correctly #218
Comments
Ah yes, this a tricky one coming from combination of Unfortunately I don't know how to fix it, I tried but I encountered another issue when I can suggest a workaround though, you have to manually set group cells to proper width, like this:
|
Tricky indeed ;) |
I just encountered the same issue. it actually appears to be a bug, if compared to the resizing behavior of other widgets. grid-group-resize-bug.mp4The cause of the problem is The fix is rather simple, @Override
public float getMinWidth() {
return 0f;
}
@Override
public float getMinHeight() {
return 0f;
} |
Hello,
i have a rather complex ui setup, that is seperated into 3 parts using the MultiSplitPane.
Column 1 & 2 are pretty simple, in the thrind col i have a GridGroup, containing some elements. If i move the second handle between column 2 & 3 the thrind column gets bigger (as expected). But if i try to move it back the content of the thrid column (GridGroup) doesn't get smaller.
Initial state:
move handle to left:
move handle to the right
Source of the example:
MyGdxGame.txt
I'm not sure if this is a bug or it's just not supported..or i'm doing something wrong?
Libgdx 1.9.4
VisUI 1.2.3
Linux Mint
The text was updated successfully, but these errors were encountered: