ialokim
ialokim
Thanks a lot for your great benchmarking library! Now that analyzing and plotting of results has been moved to `cargo-criterion`, I wonder if there is already some easy way to...
When setting the window icon using the Windows API, the icon looks blurry / pixelated in the XFCE application switcher (when pressing ALT+TAB). I think it has to do with...
From my understanding of [Accessibility in Compose](https://developer.android.com/jetpack/compose/accessibility), the following code should - treat the children in the UI tree as one element for accessibility purposes - merge the semantics of...
As mentioned in https://github.com/JetBrains/compose-jb/issues/1366#issuecomment-992295089, accessibility support on Linux seems to be difficult. Right now, screen readers like Orca completely ignore windows created using Compose for Desktop. I understand, e.g. from...
```kotlin @OptIn(ExperimentalMaterialApi::class) fun main() = singleWindowApplication { AlertDialog( onDismissRequest = {}, buttons = { Button(onClick = {}) { Text("OK") } }, title = { Text("AlertDialog") } ) } ``` On...
For my application, I want to have a div that can be associated to and show different graphs one after another. Simply re-using the same `div` when constructing a new...
I found another weird case similar to #1320 when using the asynchronous paper mode: After adding a `toolsView` to an element, I want to (conditionally) hide one of the `toolView`s...
I want to achieve a similar result to what has been possible before by setting ```js options: joint.util.defaults({ doubleLinkTools: true, }, joint.dia.LinkView.prototype.options) ``` on a custom linkView type using the...
If I want to have a link displayed below my cells on initialization, it should be as simple as adding `z: 0` to the link and `z: 1` to the...
After receiving a PineTime for Christmas, I started trying to code a bit for it. The first thing I noticed was that the very nice PineTimeStyle watch face does not...