You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
setupVertical() and setupHorizontal() methods on QuiltViewBase class, call setColumnCount(int) and setRowCount(int) passing -1 as undefined value, this makes GridLayout throw an IllegalArgumentException. Instead, these methods should pass UNDEFINED constant as undefined value.
The text was updated successfully, but these errors were encountered:
@medozeus you mean setRowCount in horizontal
i think it's better to set it undefined:
this.setRowCount(UNDEFINED); // in horizontal
this.setColumnCount(UNDEFINED); // in vertical
setupVertical()
andsetupHorizontal()
methods onQuiltViewBase
class, callsetColumnCount(int)
andsetRowCount(int)
passing -1 as undefined value, this makes GridLayout throw anIllegalArgumentException
. Instead, these methods should passUNDEFINED
constant as undefined value.The text was updated successfully, but these errors were encountered: