Matt Groth

Results 128 comments of Matt Groth

A while ago I noticed a similar issue but I cannot remember if I ever reported it. ```kotlin val MODIFIER = Modifier.pointerHoverIcon(PointerIcon(Cursor(Cursor.WAIT_CURSOR))) fun main() { application { Window(visible = true,...

Thanks, It definitely helps a lot! It likely will resolve all the practical issues I have for now. Just curious though, what is stopping us from implementing control at an...

I realize I misunderstood some terminology. You mentioned in your PR you can have ``` jvm("backend) {} jvm("frontend") {} ``` Which you referred to as multiple "targets". I thought these...

I am trying to make a button with a tight style and this blocked me.

There is a StackOverflow question [Drawing text in Jetpack Compose with precision](https://stackoverflow.com/questions/76086493/drawing-text-in-jetpack-compose-with-precision) in which the top answer says to set `includeFontPadding = false`. Due to this issue, that answer is...

@m-sasha, say I have a Cavas in Compose for Desktop, and I use `drawRect` with a sepcific size. Next, I want to `drawText` to draw a single character (say, 'X')...

So to clarify then, this issue is about adding support for a feature that would allow enabling font padding, which at present is not possible to include?

Hey, I am thinking this should be left open as I think it is a real and solvable issue. For example, when I enable Language Additions I see this in...

I am happy to take a closer look. If I understand correctly, Better Highlights is not open sourced so I am mostly limited to making vague suggestions which I already...

I have my publication configured like so: ```kotlin the().publications.register("mavenJava", MavenPublication::class.java) { it.from(components.asMap["java"]) } ```