proneon267
proneon267
The test was failing because of a bug in Android's `set_background_simple()` where it wasn't actually setting the color to transparent. I have fixed it.
>This is changing the behaviour of the set_background_simple, not changing the probe to expect a different value because of the implementation of divider. The fact that you're able to make...
Since, we've established in #2667, that the background color of a Divider widget shouldn't be allowed to change, so I have removed any such changes from this PR. Can this...
Quick question, there are actually 2 events that can be interpreted as `on_resize`: * `on_resizing` - Triggers during each step of the window resizing. * `on_resized` - Triggers after the...
I am not sure, if I understood what you meant. There are 2 ways to resize a window: * From the User's side `=>` By dragging the edges of the...
Regarding the new test, I have added the missing canvas image data test, but since the internal method to patch for testing are platform specific, hence the test is on...
While implementing this PR, I discovered a bug in the WinForms Divider widget. I have corrected the WinForms Divider implementation to use a `WinForms.Panel` instead of a `WinForms.Label`, as `WinForms.Panel`...
Also, discovered another bug in Label widget transparent background_color on WinForms. `WinForms.Label` although allows setting `BackColor` to `Color.Transparent`(doesn't raise transparent background exception), but it doesn't actually work, the background color...