Evgeniy Selezniov
Evgeniy Selezniov
> I believe so because the `index` (i.e. the order of the `children` property) isn't just for layout; it also affects the drawing order and the order of receiving touch...
What about accepting @DexerBR's suggestion, but not deprecating ``orientation``? For example, add the ``direction`` property. Whenever ``orientation`` is set to ``'horizontal'``, set ``direction`` to ``'lr'``. Whenever ``orientation`` is set to...
@misl6 I'm sorry. I can't build a lib from sources. Therefore, I can't run the tests. In this particular case, the fix was small and obvious, but writing tests blindly,...
@misl6 It seems to me that the test can be like this: ```python def test_anchorlayout_no_height_control(self): from kivy.uix.widget import Widget from kivy.uix.anchorlayout import AnchorLayout def set_height_equal_width(widget, value): widget.height = widget.width widget...
A new fix. Before this commit, the new positions of child widgets were calculated based on the ``height`` or ``width`` that either the widget had before we started resizing, or...
@misl6 It's done. Tests have also been added.