Alexander Maryanovsky

Results 12 issues of Alexander Maryanovsky

For some unfathomable reason, ``` wx.BusyInfo("Loading previous fits...", parent=self) ``` is showing like this: Simply adding a space after the `...` fixes it.

Hi, It appears that subscribing to a topic with ```options=SubscribeOptions(get_retained=True)``` causes previous subscribers to get called again. For example, suppose that someone has already posted 'bar' to a topic 'foo',...

Due to how Compose layouts work, together with the way `WindowState(size=DpSize.Unspecified)` is implemented, it's not currently possible to say "I want to size the window to its preferred size, but...

enhancement

**Describe the bug** When a TextField inside `LazyColumn` with `Modifier.imePadding` receives focus and the keyboard is displayed, the column is placed incorrectly, sometimes leaving a gap between itself and the...

bug
ios
reproduced

`ComposeContainter` currently registers the listener for window size and position on the `windowContainer`, which is a `JLayeredPane`. It ends up not being called at all when the window is resized...

If the ExposedDropdownMenu is too tall, it will overlap the textfield: ``` @OptIn(ExperimentalMaterialApi::class) fun main() = singleWindowApplication { Column(Modifier.padding(start = 8.dp)) { var expanded by remember { mutableStateOf(false) } ExposedDropdownMenuBox(...

bug
implementation
material3

On iOS (or other platforms with touch), the current selection is cleared on touch-up in `SelectionContainer` after dragging to scroll. **Affected platforms** - iOS - (probably) Web when used with...

bug
selection
ios

There are currently several problems with text selection in `SelectionContainer`: 1. When right-clicking a `SelectionContainer` with no text, the app will crash. 2. When right-clicking on the padding of a...

We currently hang in tests if there's an infinite loop with `delay` in a `LaunchedEffect`: ``` @Test fun loopInLaunchedEffectTest() = runSkikoComposeUiTest { setContent { LaunchedEffect(Unit) { while (true) { delay(1000)...

I need to access an SQLite database for a relatively small feature in my app, and I would really hate to add 10MB to it just for this feature. Unfortunately,...

enhancement:build